Uses of Interface
org.eclipse.collections.api.stack.primitive.LongStack
-
Packages that use LongStack 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 LongStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return LongStack Modifier and Type Method Description LongStack
StackIterable. collectLong(LongFunction<? super T> longFunction)
-
Uses of LongStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of LongStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableLongStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableLongStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return LongStack Modifier and Type Method Description LongStack
LongStack. reject(LongPredicate predicate)
default LongStack
LongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new LongStack excluding all elements with corresponding indexes matching the specified predicate.LongStack
LongStack. select(LongPredicate predicate)
default LongStack
LongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new LongStack including all elements with corresponding indexes matching the specified predicate.default LongStack
LongStack. tap(LongProcedure procedure)
-
Uses of LongStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement LongStack Modifier and Type Class Description (package private) class
ImmutableLongArrayStack
ImmutableLongArrayStack is the non-modifiable equivalent ofLongArrayStack
.(package private) class
ImmutableLongEmptyStack
ImmutableLongEmptyStack is an optimization forImmutableLongStack
of size 0.(package private) class
ImmutableLongSingletonStack
ImmutableLongSingletonStack is an optimization forImmutableLongStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as LongStack Modifier and Type Field Description private LongStack
ImmutableLongArrayStack.ImmutableLongStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type LongStack Constructor Description ImmutableLongStackSerializationProxy(LongStack stack)
-
Uses of LongStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement LongStack Modifier and Type Class Description class
LongArrayStack
LongArrayStack is similar toArrayStack
, and is memory-optimized for long primitives.class
SynchronizedLongStack
A synchronized view of aMutableLongStack
.class
UnmodifiableLongStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of LongStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement LongStack Modifier and Type Class Description class
AbstractLongStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-