Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableIntStack
-
Packages that use ImmutableIntStack Package Description org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.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.stream -
-
Uses of ImmutableIntStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
ImmutableIntStackFactory. empty()
ImmutableIntStack
ImmutableIntStackFactory. of()
Same asImmutableIntStackFactory.empty()
.ImmutableIntStack
ImmutableIntStackFactory. of(int one)
Same asImmutableIntStackFactory.with(int)
.ImmutableIntStack
ImmutableIntStackFactory. of(int... items)
Same asImmutableIntStackFactory.with(int[])
.ImmutableIntStack
ImmutableIntStackFactory. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntStack
ImmutableIntStackFactory. ofAll(java.util.stream.IntStream items)
ImmutableIntStack
ImmutableIntStackFactory. ofAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. ofAllReversed(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. with()
Same asImmutableIntStackFactory.empty()
.ImmutableIntStack
ImmutableIntStackFactory. with(int one)
ImmutableIntStack
ImmutableIntStackFactory. with(int... items)
ImmutableIntStack
ImmutableIntStackFactory. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntStack
ImmutableIntStackFactory. withAll(java.util.stream.IntStream items)
ImmutableIntStack
ImmutableIntStackFactory. withAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactory. withAllReversed(IntIterable items)
-
Uses of ImmutableIntStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
ImmutableStack. collectInt(IntFunction<? super T> intFunction)
-
Uses of ImmutableIntStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
ImmutableIntStack. pop()
ImmutableIntStack
ImmutableIntStack. pop(int count)
ImmutableIntStack
ImmutableIntStack. push(int item)
ImmutableIntStack
ImmutableIntStack. reject(IntPredicate predicate)
default ImmutableIntStack
ImmutableIntStack. rejectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableIntStack
ImmutableIntStack. select(IntPredicate predicate)
default ImmutableIntStack
ImmutableIntStack. selectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntStack including all elements with corresponding indexes matching the specified predicate.default ImmutableIntStack
ImmutableIntStack. tap(IntProcedure procedure)
ImmutableIntStack
IntStack. toImmutable()
-
Uses of ImmutableIntStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
ImmutableArrayStack. collectInt(IntFunction<? super T> intFunction)
Deprecated.ImmutableIntStack
ImmutableEmptyStack. collectInt(IntFunction<? super T> intFunction)
ImmutableIntStack
ImmutableNotEmptyStack. collectInt(IntFunction<? super T> function)
-
Uses of ImmutableIntStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableIntStack Modifier and Type Class Description (package private) class
ImmutableIntArrayStack
ImmutableIntArrayStack is the non-modifiable equivalent ofIntArrayStack
.(package private) class
ImmutableIntEmptyStack
ImmutableIntEmptyStack is an optimization forImmutableIntStack
of size 0.(package private) class
ImmutableIntSingletonStack
ImmutableIntSingletonStack is an optimization forImmutableIntStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableIntStack Modifier and Type Field Description (package private) static ImmutableIntStack
ImmutableIntEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
ImmutableIntStackFactoryImpl. empty()
ImmutableIntStack
ImmutableIntStackFactoryImpl. of()
ImmutableIntStack
ImmutableIntStackFactoryImpl. of(int one)
ImmutableIntStack
ImmutableIntStackFactoryImpl. of(int... items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAll(java.util.stream.IntStream items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. ofAllReversed(IntIterable items)
ImmutableIntStack
ImmutableIntArrayStack. pop()
ImmutableIntStack
ImmutableIntArrayStack. pop(int count)
ImmutableIntStack
ImmutableIntEmptyStack. pop()
ImmutableIntStack
ImmutableIntEmptyStack. pop(int count)
ImmutableIntStack
ImmutableIntSingletonStack. pop()
ImmutableIntStack
ImmutableIntSingletonStack. pop(int count)
ImmutableIntStack
ImmutableIntArrayStack. push(int item)
ImmutableIntStack
ImmutableIntEmptyStack. push(int element)
ImmutableIntStack
ImmutableIntSingletonStack. push(int element)
ImmutableIntStack
ImmutableIntArrayStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntEmptyStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntSingletonStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntArrayStack. select(IntPredicate predicate)
ImmutableIntStack
ImmutableIntEmptyStack. select(IntPredicate predicate)
ImmutableIntStack
ImmutableIntSingletonStack. select(IntPredicate predicate)
ImmutableIntStack
ImmutableIntArrayStack. toImmutable()
ImmutableIntStack
ImmutableIntEmptyStack. toImmutable()
ImmutableIntStack
ImmutableIntSingletonStack. toImmutable()
ImmutableIntStack
ImmutableIntStackFactoryImpl. with()
ImmutableIntStack
ImmutableIntStackFactoryImpl. with(int one)
ImmutableIntStack
ImmutableIntStackFactoryImpl. with(int... items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Integer> iterable)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAll(java.util.stream.IntStream items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAll(IntIterable items)
ImmutableIntStack
ImmutableIntStackFactoryImpl. withAllReversed(IntIterable items)
-
Uses of ImmutableIntStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableIntStack Modifier and Type Method Description ImmutableIntStack
IntArrayStack. toImmutable()
ImmutableIntStack
SynchronizedIntStack. toImmutable()
ImmutableIntStack
UnmodifiableIntStack. toImmutable()
-
Uses of ImmutableIntStack in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableIntStack Modifier and Type Method Description static ImmutableIntStack
PrimitiveStreams. iIntStack(java.util.stream.IntStream stream)
-