public ValueEnumerator(UnsafeSortedDictionary *dictionary)
 {
     _valueOffset = dictionary->_valueOffset;
     _iterator    = new UnsafeOrderedCollection.Enumerator(&dictionary->_collection);
 }
Ejemplo n.º 2
0
 public Enumerator(UnsafeSortedSet *set)
 {
     _keyOffset = set->_collection.KeyOffset;
     _iterator  = new UnsafeOrderedCollection.Enumerator(&set->_collection);
 }
 public KeyEnumerator(UnsafeSortedDictionary *dictionary)
 {
     _keyOffset = dictionary->_collection.KeyOffset;
     _iterator  = new UnsafeOrderedCollection.Enumerator(&dictionary->_collection);
 }