public BoolList(bool emptyListValue, BoolListOperatorType operatorType, ReadByNonExistentKeyMode readByNonExistentKeyMode) { this.emptyListValue = emptyListValue; this.resultValue = emptyListValue; this.operatorType = operatorType; list = new LightDictionary <string, bool>(readByNonExistentKeyMode); }
public void CopyTo(LightDictionary <KeyType, ItemValueType> dest) { KeyValuePair currentItem = head; while (currentItem != null) { dest[currentItem.Key] = currentItem.Value; currentItem = currentItem.Next; } }
public void Dispose() { source = null; current = null; }
public ValuesEnumerator(LightDictionary <KeyType, ItemValueType> source) { this.source = source; this.init = true; }