Trie

Compile-time switch trie from Brian Schott

class Trie : TrieNode!(V)(
V
) {}

Members

Functions

add
void add(string key, V value)

Adds the given value to the trie with the given key

Meta