コード例 #1
0
 public void Return <T>(IEnumerable <HashSet <T> > items)
 => HashSetConcurrentPool <T> .Return(items);
コード例 #2
0
 public void Return <T>(HashSet <T> item)
 => HashSetConcurrentPool <T> .Return(item);
コード例 #3
0
 public void Return <T>(params HashSet <T>[] items)
 => HashSetConcurrentPool <T> .Return(items);
コード例 #4
0
 public HashSet <T> HashSet <T>()
 => HashSetConcurrentPool <T> .Get();