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