pub const PrefixedPath = struct
pub const PrefixedPath = struct { prefix: u8, sub_path: []const u8, fn eql(a: PrefixedPath, b: PrefixedPath) bool { return a.prefix == b.prefix and std.mem.eql(u8, a.sub_path, b.sub_path); } fn hash(pp: PrefixedPath) u32 { return @truncate(std.hash.Wyhash.hash(pp.prefix, pp.sub_path)); } }