Generate a new unique identifier.
Details
Identifiers are made using the uuid::UUIDgenerate()
.
Examples
# create new id
i <- new_id()
# print id
print(i)
#> id: be93a870-f305-41af-aac8-cd4a6b4be59a
# convert to character
as.character(i)
#> [1] "be93a870-f305-41af-aac8-cd4a6b4be59a"
# check if it is an Id object
is.Id(i)
#> [1] TRUE