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