Example #1
0
 internal Enumerator(DictionarySlim dictionary)
 {
     _dictionary = dictionary;
     _index      = 0;
     _count      = _dictionary._count;
     _current    = default;
 }
Example #2
0
 public DictionarySlimDebugView(DictionarySlim <K, V> dictionary)
 {
     _dictionary = dictionary ?? throw new ArgumentNullException(nameof(dictionary));
 }