Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableIntStack
| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.stack.primitive | |
| 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.mutable |
This package contains implementations of the
MutableStack interface. |
| org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stream |
-
Uses of MutableIntStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return MutableIntStack Modifier and Type Method Description MutableIntStackMutableIntStackFactory. empty()MutableIntStackMutableIntStackFactory. of()Same asMutableIntStackFactory.empty().MutableIntStackMutableIntStackFactory. of(int... items)Same asMutableIntStackFactory.with(int[]).MutableIntStackMutableIntStackFactory. ofAll(Iterable<Integer> iterable)MutableIntStackMutableIntStackFactory. ofAll(IntStream items)MutableIntStackMutableIntStackFactory. ofAll(IntIterable items)MutableIntStackMutableIntStackFactory. ofAllReversed(IntIterable items)MutableIntStackMutableIntStackFactory. with()Same asMutableIntStackFactory.empty().MutableIntStackMutableIntStackFactory. with(int... items)MutableIntStackMutableIntStackFactory. withAll(Iterable<Integer> iterable)MutableIntStackMutableIntStackFactory. withAll(IntStream items)MutableIntStackMutableIntStackFactory. withAll(IntIterable items)MutableIntStackMutableIntStackFactory. withAllReversed(IntIterable items) -
Uses of MutableIntStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableIntStack Modifier and Type Method Description MutableIntStackMutableStack. collectInt(IntFunction<? super T> intFunction) -
Uses of MutableIntStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return MutableIntStack Modifier and Type Method Description MutableIntStackMutableIntStack. asSynchronized()MutableIntStackMutableIntStack. asUnmodifiable()default MutableIntStackMutableIntStack. newEmpty()Creates a new empty mutable version of the same stack type.MutableIntStackMutableIntStack. reject(IntPredicate predicate)MutableIntStackMutableIntStack. select(IntPredicate predicate)default MutableIntStackMutableIntStack. tap(IntProcedure procedure) -
Uses of MutableIntStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableIntStack Modifier and Type Method Description MutableIntStackArrayStack. collectInt(IntFunction<? super T> intFunction)MutableIntStackSynchronizedStack. collectInt(IntFunction<? super T> intFunction)MutableIntStackUnmodifiableStack. collectInt(IntFunction<? super T> intFunction) -
Uses of MutableIntStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement MutableIntStack Modifier and Type Class Description classIntArrayStackIntArrayStack is similar toArrayStack, and is memory-optimized for int primitives.classSynchronizedIntStackA synchronized view of aMutableIntStack.classUnmodifiableIntStackThis file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableIntStack Modifier and Type Method Description MutableIntStackIntArrayStack. asSynchronized()MutableIntStackSynchronizedIntStack. asSynchronized()MutableIntStackUnmodifiableIntStack. asSynchronized()MutableIntStackIntArrayStack. asUnmodifiable()MutableIntStackSynchronizedIntStack. asUnmodifiable()MutableIntStackUnmodifiableIntStack. asUnmodifiable()MutableIntStackMutableIntStackFactoryImpl. empty()MutableIntStackSynchronizedIntStack. newEmpty()MutableIntStackUnmodifiableIntStack. newEmpty()MutableIntStackMutableIntStackFactoryImpl. of()MutableIntStackMutableIntStackFactoryImpl. of(int... items)MutableIntStackMutableIntStackFactoryImpl. ofAll(Iterable<Integer> iterable)MutableIntStackMutableIntStackFactoryImpl. ofAll(IntStream items)MutableIntStackMutableIntStackFactoryImpl. ofAll(IntIterable items)MutableIntStackMutableIntStackFactoryImpl. ofAllReversed(IntIterable items)MutableIntStackIntArrayStack. reject(IntPredicate predicate)MutableIntStackSynchronizedIntStack. reject(IntPredicate predicate)MutableIntStackUnmodifiableIntStack. reject(IntPredicate predicate)MutableIntStackIntArrayStack. select(IntPredicate predicate)MutableIntStackSynchronizedIntStack. select(IntPredicate predicate)MutableIntStackUnmodifiableIntStack. select(IntPredicate predicate)MutableIntStackMutableIntStackFactoryImpl. with()MutableIntStackMutableIntStackFactoryImpl. with(int... items)MutableIntStackMutableIntStackFactoryImpl. withAll(Iterable<Integer> iterable)MutableIntStackMutableIntStackFactoryImpl. withAll(IntStream items)MutableIntStackMutableIntStackFactoryImpl. withAll(IntIterable items)MutableIntStackMutableIntStackFactoryImpl. withAllReversed(IntIterable items)Constructors in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type MutableIntStack Constructor Description SynchronizedIntStack(MutableIntStack stack)SynchronizedIntStack(MutableIntStack stack, Object newLock)UnmodifiableIntStack(MutableIntStack stack) -
Uses of MutableIntStack in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableIntStack Modifier and Type Method Description static MutableIntStackPrimitiveStreams. mIntStack(IntStream stream)