示例#1
0
 public <T> Recycler.V<ObjectFloatOpenHashMap<T>> objectFloatMap(int sizing) {
   return (Recycler.V) objectFloatMap.obtain(sizing);
 }
示例#2
0
 public Recycler.V<LongIntOpenHashMap> longIntMap(int sizing) {
   return longIntMap.obtain(sizing);
 }
示例#3
0
 public <T> Recycler.V<IntObjectOpenHashMap<T>> intObjectMap(int sizing) {
   return (Recycler.V) intObjectMap.obtain(sizing);
 }
示例#4
0
 public Recycler.V<FloatIntOpenHashMap> floatIntMap(int sizing) {
   return floatIntMap.obtain(sizing);
 }
示例#5
0
 public Recycler.V<DoubleIntOpenHashMap> doubleIntMap(int sizing) {
   return doubleIntMap.obtain(sizing);
 }
示例#6
0
 public Recycler.V<IntIntOpenHashMap> intIntMap(int sizing) {
   return intIntMap.obtain(sizing);
 }
示例#7
0
 public <T> Recycler.V<LongObjectOpenHashMap<T>> longObjectMap(int sizing) {
   return (Recycler.V) longObjectMap.obtain(sizing);
 }
示例#8
0
 public <T> Recycler.V<DoubleObjectOpenHashMap<T>> doubleObjectMap(int sizing) {
   return (Recycler.V) doubleObjectMap.obtain(sizing);
 }
示例#9
0
 public <T> Recycler.V<ObjectOpenHashSet<T>> hashSet(int sizing) {
   return (Recycler.V) hashSet.obtain(sizing);
 }
示例#10
0
 public <K, V> Recycler.V<ObjectObjectOpenHashMap<K, V>> hashMap(int sizing) {
   return (Recycler.V) hashMap.obtain(sizing);
 }