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