Exemplo n.º 1
0
 public TrieDictionaryEnumerator(TrieNode node, Trie <T> trie, string prefix)
     : base(node, trie, prefix)
 {
 }
Exemplo n.º 2
0
 public TrieValueEnumerator(TrieNode node, Trie <T> trie, string prefix)
     : base(node, trie, prefix)
 {
 }
Exemplo n.º 3
0
 public TrieSubset(Trie <T> trie, string prefix)
 {
     this.trie   = trie;
     this.prefix = prefix;
 }
Exemplo n.º 4
0
 public TrieDictionaryEnumerator([CanBeNull] TrieNode node, [NotNull] Trie <T> trie, [NotNull] string prefix)
     : base(node, trie, prefix)
 {
 }