Beispiel #1
0
 public ArrayDictionary <TKey, TValue> ArrayDictionary <TKey, TValue>()
 => ArrayDictionaryPool <TKey, TValue> .Get();
Beispiel #2
0
 public void Return <TKey, TValue>(ArrayDictionary <TKey, TValue> item)
 => ArrayDictionaryPool <TKey, TValue> .Return(item);
Beispiel #3
0
 public void Return <TKey, TValue>(IEnumerable <ArrayDictionary <TKey, TValue> > items)
 => ArrayDictionaryPool <TKey, TValue> .Return(items);
Beispiel #4
0
 public void Return <TKey, TValue>(params ArrayDictionary <TKey, TValue>[] items)
 => ArrayDictionaryPool <TKey, TValue> .Return(items);
Beispiel #5
0
 public void Return <TKey, TValue>(bool shallowClear, IEnumerable <ArrayDictionary <TKey, TValue> > items)
 => ArrayDictionaryPool <TKey, TValue> .Return(shallowClear, items);
Beispiel #6
0
 public void Return <TKey, TValue>(bool shallowClear, params ArrayDictionary <TKey, TValue>[] items)
 => ArrayDictionaryPool <TKey, TValue> .Return(shallowClear, items);
Beispiel #7
0
 public void Return <TKey, TValue>(bool shallowClear, ArrayDictionary <TKey, TValue> item)
 => ArrayDictionaryPool <TKey, TValue> .Return(shallowClear, item);