Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableDoubleStack
-
Packages that use MutableDoubleStack 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.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
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 MutableDoubleStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return MutableDoubleStack Modifier and Type Method Description MutableDoubleStack
MutableDoubleStackFactory. empty()
MutableDoubleStack
MutableDoubleStackFactory. of()
Same asMutableDoubleStackFactory.empty()
.MutableDoubleStack
MutableDoubleStackFactory. of(double... items)
MutableDoubleStack
MutableDoubleStackFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleStack
MutableDoubleStackFactory. ofAll(java.util.stream.DoubleStream items)
MutableDoubleStack
MutableDoubleStackFactory. ofAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. ofAllReversed(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. with()
Same asMutableDoubleStackFactory.empty()
.MutableDoubleStack
MutableDoubleStackFactory. with(double... items)
MutableDoubleStack
MutableDoubleStackFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleStack
MutableDoubleStackFactory. withAll(java.util.stream.DoubleStream items)
MutableDoubleStack
MutableDoubleStackFactory. withAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. withAllReversed(DoubleIterable items)
-
Uses of MutableDoubleStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableDoubleStack Modifier and Type Method Description MutableDoubleStack
MutableStack. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of MutableDoubleStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return MutableDoubleStack Modifier and Type Method Description MutableDoubleStack
MutableDoubleStack. asSynchronized()
MutableDoubleStack
MutableDoubleStack. asUnmodifiable()
default MutableDoubleStack
MutableDoubleStack. newEmpty()
Creates a new empty mutable version of the same stack type.MutableDoubleStack
MutableDoubleStack. reject(DoublePredicate predicate)
default MutableDoubleStack
MutableDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleStack
MutableDoubleStack. select(DoublePredicate predicate)
default MutableDoubleStack
MutableDoubleStack. selectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack including all elements with corresponding indexes matching the specified predicate.default MutableDoubleStack
MutableDoubleStack. tap(DoubleProcedure procedure)
-
Uses of MutableDoubleStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableDoubleStack Modifier and Type Method Description MutableDoubleStack
ArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleStack
SynchronizedStack. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleStack
UnmodifiableStack. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of MutableDoubleStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement MutableDoubleStack 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.Fields in org.eclipse.collections.impl.stack.mutable.primitive declared as MutableDoubleStack Modifier and Type Field Description private MutableDoubleStack
SynchronizedDoubleStack. stack
private MutableDoubleStack
UnmodifiableDoubleStack. stack
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableDoubleStack Modifier and Type Method Description MutableDoubleStack
DoubleArrayStack. asSynchronized()
MutableDoubleStack
SynchronizedDoubleStack. asSynchronized()
MutableDoubleStack
UnmodifiableDoubleStack. asSynchronized()
MutableDoubleStack
DoubleArrayStack. asUnmodifiable()
MutableDoubleStack
SynchronizedDoubleStack. asUnmodifiable()
MutableDoubleStack
UnmodifiableDoubleStack. asUnmodifiable()
MutableDoubleStack
MutableDoubleStackFactoryImpl. empty()
MutableDoubleStack
SynchronizedDoubleStack. newEmpty()
MutableDoubleStack
UnmodifiableDoubleStack. newEmpty()
MutableDoubleStack
MutableDoubleStackFactoryImpl. of()
MutableDoubleStack
MutableDoubleStackFactoryImpl. of(double... items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAll(java.util.stream.DoubleStream items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)
MutableDoubleStack
DoubleArrayStack. reject(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. reject(DoublePredicate predicate)
MutableDoubleStack
UnmodifiableDoubleStack. reject(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.MutableDoubleStack
DoubleArrayStack. select(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. select(DoublePredicate predicate)
MutableDoubleStack
UnmodifiableDoubleStack. select(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. selectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack including all elements with corresponding indexes matching the specified predicate.MutableDoubleStack
MutableDoubleStackFactoryImpl. with()
MutableDoubleStack
MutableDoubleStackFactoryImpl. with(double... items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAll(java.util.stream.DoubleStream items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAllReversed(DoubleIterable items)
Constructors in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type MutableDoubleStack Constructor Description SynchronizedDoubleStack(MutableDoubleStack stack)
SynchronizedDoubleStack(MutableDoubleStack stack, java.lang.Object newLock)
UnmodifiableDoubleStack(MutableDoubleStack stack)
-
Uses of MutableDoubleStack in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return MutableDoubleStack Modifier and Type Method Description static MutableDoubleStack
PrimitiveStreams. mDoubleStack(java.util.stream.DoubleStream stream)
-