Example #1
0
 public CPTrie(CPTrie <T> copy)
 {
     _head  = copy._head.CloneAndOptimize();
     _count = copy._count;
 }
Example #2
0
 public KeyCollection(CPTrie <TValue> trie)
 {
     _trie = trie;
 }
Example #3
0
 public CPValueCollection(CPTrie <T> trie)
 {
     _trie = trie;
 }
Example #4
0
 internal protected KeyEnumerator(CPTrie <TValue> trie) : base(trie)
 {
 }