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