Uses of Interface
org.eclipse.collections.api.stack.primitive.DoubleStack
-
Packages that use DoubleStack 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 DoubleStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return DoubleStack Modifier and Type Method Description DoubleStack
StackIterable. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of DoubleStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of DoubleStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableDoubleStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableDoubleStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return DoubleStack Modifier and Type Method Description DoubleStack
DoubleStack. reject(DoublePredicate predicate)
default DoubleStack
DoubleStack. rejectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleStack excluding all elements with corresponding indexes matching the specified predicate.DoubleStack
DoubleStack. select(DoublePredicate predicate)
default DoubleStack
DoubleStack. selectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleStack including all elements with corresponding indexes matching the specified predicate.default DoubleStack
DoubleStack. tap(DoubleProcedure procedure)
-
Uses of DoubleStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement DoubleStack Modifier and Type Class Description (package private) class
ImmutableDoubleArrayStack
ImmutableDoubleArrayStack is the non-modifiable equivalent ofDoubleArrayStack
.(package private) class
ImmutableDoubleEmptyStack
ImmutableDoubleEmptyStack is an optimization forImmutableDoubleStack
of size 0.(package private) class
ImmutableDoubleSingletonStack
ImmutableDoubleSingletonStack is an optimization forImmutableDoubleStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as DoubleStack Modifier and Type Field Description private DoubleStack
ImmutableDoubleArrayStack.ImmutableDoubleStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoubleStack Constructor Description ImmutableDoubleStackSerializationProxy(DoubleStack stack)
-
Uses of DoubleStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement DoubleStack Modifier and Type Class Description class
DoubleArrayStack
DoubleArrayStack is similar toArrayStack
, and is memory-optimized for double primitives.class
SynchronizedDoubleStack
A synchronized view of aMutableDoubleStack
.class
UnmodifiableDoubleStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of DoubleStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement DoubleStack Modifier and Type Class Description class
AbstractDoubleStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-