Uses of Class
org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
-
Packages that use IntArrayList Package Description org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of IntArrayList in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive that return IntArrayList Modifier and Type Method Description IntArrayList
IntArrayList. newEmpty()
Creates a new empty IntArrayList.static IntArrayList
IntArrayList. newList(IntIterable source)
static IntArrayList
IntArrayList. newListWith(int... elements)
Creates a new list using the passedelements
argument as the backing store.static IntArrayList
IntArrayList. newWithNValues(int size, int value)
IntArrayList
IntArrayList. reject(IntPredicate predicate)
IntArrayList
IntArrayList. reverseThis()
IntArrayList
IntArrayList. select(IntPredicate predicate)
IntArrayList
IntArrayList. sortThis()
IntArrayList
IntArrayList. sortThis(IntComparator comparator)
IntArrayList
IntArrayList. toReversed()
IntArrayList
IntArrayList. with(int element)
IntArrayList
IntArrayList. with(int element1, int element2)
IntArrayList
IntArrayList. with(int element1, int element2, int element3)
IntArrayList
IntArrayList. with(int element1, int element2, int element3, int... elements)
IntArrayList
IntArrayList. withAll(IntIterable elements)
private IntArrayList
IntArrayList. withArrayCopy(int[] elements, int begin, int length)
IntArrayList
IntArrayList. without(int element)
IntArrayList
IntArrayList. withoutAll(IntIterable elements)
static IntArrayList
IntArrayList. wrapCopy(int... array)
Creates a new list by first copying the array passed in. -
Uses of IntArrayList in org.eclipse.collections.impl.stack.immutable.primitive
Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as IntArrayList Modifier and Type Field Description private IntArrayList
ImmutableIntArrayStack. delegate
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return IntArrayList Modifier and Type Method Description protected IntArrayList
ImmutableIntArrayStack. getDelegate()
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntArrayList Constructor Description ImmutableIntArrayStack(IntArrayList newElements)
-
Uses of IntArrayList in org.eclipse.collections.impl.stack.mutable.primitive
Fields in org.eclipse.collections.impl.stack.mutable.primitive declared as IntArrayList Modifier and Type Field Description private IntArrayList
IntArrayStack. delegate
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return IntArrayList Modifier and Type Method Description protected IntArrayList
IntArrayStack. getDelegate()
-
Uses of IntArrayList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return IntArrayList Modifier and Type Method Description protected abstract IntArrayList
AbstractIntStack. getDelegate()
-