/comptrie.zig

A simple comptime Trie implementation in Zig.

Primary LanguageZigMIT LicenseMIT

comptrie.zig

A simple comptime Trie implementation in Zig.

Usage:

const CompTrie = @import("comptrie.zig).CompTrie;

comptime var trie = CompTrie(u32){};
comptime trie.put("hello", 0);
comptime trie.put("world", 1);

print("{s} -> {d}\n", .{ trie.get("hello") });