summaryrefslogtreecommitdiffstats
path: root/trie.h
AgeCommit message (Collapse)Author
2020-11-12Include what I useTavian Barnes
Thanks to https://github.com/include-what-you-use/include-what-you-use
2019-04-20trie: Make trie_remove() take a leaf instead of a keyTavian Barnes
2019-03-27trie: Store void* values rather than const void*Tavian Barnes
Fewer casts needed this way.
2019-03-06trie: Add a function to get an arbitrary leafTavian Barnes
This is useful if the stored values need to be cleaned up.
2019-03-04trie: Implement prefix/postfix searchTavian Barnes
2019-03-04trie: Implement removalTavian Barnes
2019-03-04trie: Revamp the API to support mappingsTavian Barnes
2019-03-01trie: Implement a QP trieTavian Barnes