This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| pub const Uuid = packed union { | |
| /// general parts usually found in UUIDs | |
| pub const Parts = packed struct(u128) { | |
| _pad0: u48 = 0, | |
| version_bits: u4, | |
| _pad1: u12 = 0, | |
| variant_bits: u2 = 0b10, | |
| _pad2: u62 = 0, | |
| }; |
OlderNewer