Example #1
0
 public void Return <T>(IEnumerable <HashSet <T> > items)
 => HashSetPool <T> .Return(items);
Example #2
0
 public void Return <T>(HashSet <T> item)
 => HashSetPool <T> .Return(item);
Example #3
0
 public void Return <T>(params HashSet <T>[] items)
 => HashSetPool <T> .Return(items);
Example #4
0
 public HashSet <T> HashSet <T>()
 => HashSetPool <T> .Get();