public StaticConcurrentHashTableValueCollection(StaticConcurrentAbstractHashTable <TKey, TValue, TK, TV> hashTable)
 {
     this.hashTable = hashTable;
 }
Beispiel #2
0
 public StaticConcurrentHashTableValueEnumerator(StaticConcurrentAbstractHashTable <TKey, TValue, TK, TV> hashTable)
 {
     this.hashTable = hashTable;
     recordPointer  = hashTable.config.TablePointer - hashTable.config.RecordSize;
     slot           = -1;
 }