uuid {ids} | R Documentation |
Generate UUIDs using the uuid package. This is simply a thin
wrapper around uuid::UUIDgenerate
that matches the interface
in the rest of the ids package.
uuid(n = 1, drop_hyphens = FALSE, use_time = NA)
n |
number of ids to return. If |
drop_hyphens |
Drop the hyphens from the UUID? |
use_time |
Passed through to |
Rich FitzJohn
# Generate one id
uuid()
# Or a bunch
uuid(10)
# More in the style of random_id()
uuid(drop_hyphens = TRUE)