Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableIntStack
Packages that use ImmutableIntStack
Package
Description
This package contains factory API for creating primitive stack instances.
This package contains interfaces for stack API.
This package contains mutable and immutable primitive stack API.
-
Uses of ImmutableIntStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableIntStackModifier and TypeMethodDescriptionImmutableIntStackFactory.empty()ImmutableIntStackFactory.of()Same asImmutableIntStackFactory.empty().ImmutableIntStackFactory.of(int one) Same asImmutableIntStackFactory.with(int).ImmutableIntStackFactory.of(int... items) Same asImmutableIntStackFactory.with(int[]).ImmutableIntStackFactory.ofAll(IntIterable items) ImmutableIntStackFactory.ofAllReversed(IntIterable items) ImmutableIntStackFactory.with()Same asImmutableIntStackFactory.empty().ImmutableIntStackFactory.with(int one) ImmutableIntStackFactory.with(int... items) ImmutableIntStackFactory.withAll(IntIterable items) ImmutableIntStackFactory.withAllReversed(IntIterable items) -
Uses of ImmutableIntStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableIntStack -
Uses of ImmutableIntStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableIntStackModifier and TypeMethodDescriptionImmutableIntStack.pop()ImmutableIntStack.pop(int count) ImmutableIntStack.push(int item) ImmutableIntStack.reject(IntPredicate predicate) default ImmutableIntStackImmutableIntStack.rejectWithIndex(IntIntPredicate predicate) Returns a new ImmutableIntStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableIntStack.select(IntPredicate predicate) default ImmutableIntStackImmutableIntStack.selectWithIndex(IntIntPredicate predicate) Returns a new ImmutableIntStack including all elements with corresponding indexes matching the specified predicate.default ImmutableIntStackImmutableIntStack.tap(IntProcedure procedure) IntStack.toImmutable()