Construct a UUID struct from the 16 byte representation of a UUID.
enum ubyte[16] data = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]; auto uuid = UUID(data); enum ctfe = UUID(data); assert(uuid.data == data); assert(ctfe.data == data);
See Implementation
Construct a UUID struct from the 16 byte representation of a UUID.