View source code
Display the source code in std/uuid.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
Function std.uuid.UUID.uuidVersion
RFC 4122 defines different UUID
versions. The version shows
how a UUID
was generated, e.g. a version 4 UUID
was generated
from a random number, a version 3 UUID
from an MD5 hash of a name.
Returns the version used by this UUID
.
Prototype
UUID.Version uuidVersion() pure nothrow @property @nogc @safe const;
See Also
Example
assert(UUID("8ab3060e-2cba-4f23-b74c-b52db3bdfb46").uuidVersion == UUID.Version.randomNumberBased);
Authors
Johannes Pfau