Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 475 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 475 Bytes

Fast, allocation-free v4 UUIDs in Zig

Example

const std = @import("std");
const UUID = @import("uuid.zig").UUID;

pub fn main() !void {
    // generate
    const uuid1 = UUID.init();
    std.debug.print("{}\n", .{uuid1});

    // parse
    const uuid2 = try UUID.parse("3df6f0e4-f9b1-4e34-ad70-33206069b995");
    std.debug.print("{}\n", .{uuid2});
}
$ zig run example.zig 
78c33481-4c67-4202-ba8d-11ee1dfaad24
3df6f0e4-f9b1-4e34-ad70-33206069b995