authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-03-13 19:42:30 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-03-13 19:42:30 -07:00
log20dfd5a8b3781fed36dbeebfcf32bfe26f1115e6
tree5adda3afece171beb6253c16a916db56f63a75f3
parent875affe19905b430fdc5514418cde32f5f25119e
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

add ULID.nprint


1 files changed, 4 insertions(+), 0 deletions(-)

ulid.zig+4
......@@ -69,4 +69,8 @@ pub const ULID = struct {
6969 _ = options;
7070 try writer.writeAll(&self.bytes());
7171 }
72
73 pub fn nprint(self: ULID, writer: anytype) !void {
74 try writer.writeAll(&self.bytes());
75 }
7276};