Uses of Interface
org.eclipse.collections.api.stack.primitive.IntStack
-
Packages that use IntStack Package Description 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.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 IntStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return IntStack Modifier and Type Method Description IntStack
StackIterable. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of IntStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableIntStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableIntStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return IntStack Modifier and Type Method Description IntStack
IntStack. reject(IntPredicate predicate)
default IntStack
IntStack. rejectWithIndex(IntIntPredicate predicate)
Returns a new IntStack excluding all elements with corresponding indexes matching the specified predicate.IntStack
IntStack. select(IntPredicate predicate)
default IntStack
IntStack. selectWithIndex(IntIntPredicate predicate)
Returns a new IntStack including all elements with corresponding indexes matching the specified predicate.default IntStack
IntStack. tap(IntProcedure procedure)
-
Uses of IntStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement IntStack 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 IntStack Modifier and Type Field Description private IntStack
ImmutableIntArrayStack.ImmutableIntStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntStack Constructor Description ImmutableIntStackSerializationProxy(IntStack stack)
-
Uses of IntStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement IntStack Modifier and Type Class Description class
IntArrayStack
IntArrayStack is similar toArrayStack
, and is memory-optimized for int primitives.class
SynchronizedIntStack
A synchronized view of aMutableIntStack
.class
UnmodifiableIntStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of IntStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement IntStack Modifier and Type Class Description class
AbstractIntStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-