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