예제 #1
0
 public TrieSubset(Trie <T> trie, string prefix)
 {
     this.trie   = trie;
     this.prefix = prefix;
 }
예제 #2
0
 public TrieDictionaryEnumerator(TrieNode node, Trie <T> trie, string prefix)
     : base(node, trie, prefix)
 {
 }
예제 #3
0
 public TrieValueEnumerator(TrieNode node, Trie <T> trie, string prefix)
     : base(node, trie, prefix)
 {
 }