A C++ cross-platform implementation **for universally unique identifiers**, simply know as either UUID or GUID (mostly on Windows). A UUID is a 128-bit number used to uniquely identify information in computer systems, such as database table keys, COM interfaces, classes and type libraries, and many others.
The library defines a namespace `uuids` with the following types and functions:
*`uuid` is a class representing a UUID; this can be default constructed (a nil UUID), constructed from an array of bytes, or from a string.
sentation (in lowercase)
*`uuid_variant` is a strongly type enum representing the type of a UUID
*`uuid_version` is a strongly type enum representing the version of a UUID
*`make_uuid` is a parameterless function that creates a new UUID using the typical platform-specific method to create one (`CoCreateGuid` on Windows, `uuid_generate` on Linux, `CFUUIDCreate` on Mac).
*`operator==` and `operator!=` for UUIDs comparison
*`operator<<` to write a UUID to an output string using the standard repre