Method and Description |
---|
org.d2ab.collection.doubles.DoubleCollection.addDouble(double)
Use
DoubleCollection.addDoubleExactly(double) instead. |
org.d2ab.collection.chars.ArrayCharList.of(char...)
Use
ArrayCharList.create(char...) instead. |
org.d2ab.collection.doubles.ArrayDoubleList.of(double...)
Use
ArrayDoubleList.create(double...) instead. |
org.d2ab.collection.ints.ArrayIntList.of(int...)
Use
ArrayIntList.create(int...) instead. |
org.d2ab.collection.longs.ArrayLongList.of(long...)
Use
ArrayLongList.create(long...) instead. |
Constructor and Description |
---|
org.d2ab.collection.chars.ArrayCharList(int)
Use
ArrayCharList.withCapacity(int) instead. |
org.d2ab.collection.doubles.ArrayDoubleList(int)
Use
ArrayDoubleList.withCapacity(int) instead. |
org.d2ab.collection.ints.ArrayIntList(int)
Use
ArrayIntList.withCapacity(int) instead. |
org.d2ab.collection.longs.ArrayLongList(int)
Use
ArrayLongList.withCapacity(int) instead. |