UUIDs
Generates a version 1 (time-based) universally unique identifier (UUID), as specified by RFC 4122. Note that the Node ID is randomly generated (does not identify the host) according to section 4.5 of the RFC.
Examples
julia> uuid1(rng)
Generates a version 4 (random or pseudo-random) universally unique identifier (UUID), as specified by RFC 4122.
Examples
julia> rng = MersenneTwister(1234);
UUID("196f2941-2d58-45ba-9f13-43a2532b2fa8")
Inspects the given UUID and returns its version (see RFC 4122).
Examples
julia> uuid_version(uuid4())