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