Skip to content

satinxs/comptrie.zig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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") });

About

A simple comptime Trie implementation in Zig.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages