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. -
-
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 ImmutableIntStackImmutableIntStackFactory. empty()ImmutableIntStackImmutableIntStackFactory. of()Same asImmutableIntStackFactory.empty().ImmutableIntStackImmutableIntStackFactory. of(int one)Same asImmutableIntStackFactory.with(int).ImmutableIntStackImmutableIntStackFactory. of(int... items)Same asImmutableIntStackFactory.with(int[]).ImmutableIntStackImmutableIntStackFactory. ofAll(Iterable<Integer> iterable)ImmutableIntStackImmutableIntStackFactory. ofAll(IntStream items)ImmutableIntStackImmutableIntStackFactory. ofAll(IntIterable items)ImmutableIntStackImmutableIntStackFactory. ofAllReversed(IntIterable items)ImmutableIntStackImmutableIntStackFactory. with()Same asImmutableIntStackFactory.empty().ImmutableIntStackImmutableIntStackFactory. with(int one)ImmutableIntStackImmutableIntStackFactory. with(int... items)ImmutableIntStackImmutableIntStackFactory. withAll(Iterable<Integer> iterable)ImmutableIntStackImmutableIntStackFactory. withAll(IntStream items)ImmutableIntStackImmutableIntStackFactory. withAll(IntIterable items)ImmutableIntStackImmutableIntStackFactory. 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 ImmutableIntStackImmutableStack. 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 ImmutableIntStackImmutableIntStack. pop()ImmutableIntStackImmutableIntStack. pop(int count)ImmutableIntStackImmutableIntStack. push(int item)ImmutableIntStackImmutableIntStack. reject(IntPredicate predicate)default ImmutableIntStackImmutableIntStack. rejectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableIntStackImmutableIntStack. 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)ImmutableIntStackIntStack. toImmutable()
-