Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableDoubleStack
-
Packages that use ImmutableDoubleStack 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.immutable This package contains implementations of theImmutableStack
interface.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.stream -
-
Uses of ImmutableDoubleStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
ImmutableDoubleStackFactory. empty()
ImmutableDoubleStack
ImmutableDoubleStackFactory. of()
Same asImmutableDoubleStackFactory.empty()
.ImmutableDoubleStack
ImmutableDoubleStackFactory. of(double one)
ImmutableDoubleStack
ImmutableDoubleStackFactory. of(double... items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAllReversed(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. with()
Same asImmutableDoubleStackFactory.empty()
.ImmutableDoubleStack
ImmutableDoubleStackFactory. with(double one)
ImmutableDoubleStack
ImmutableDoubleStackFactory. with(double... items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAllReversed(DoubleIterable items)
-
Uses of ImmutableDoubleStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
ImmutableStack. collectDouble(DoubleFunction<? super T> doubleFunction)
-
Uses of ImmutableDoubleStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
ImmutableDoubleStack. pop()
ImmutableDoubleStack
ImmutableDoubleStack. pop(int count)
ImmutableDoubleStack
ImmutableDoubleStack. push(double item)
ImmutableDoubleStack
ImmutableDoubleStack. reject(DoublePredicate predicate)
default ImmutableDoubleStack
ImmutableDoubleStack. rejectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableDoubleStack
ImmutableDoubleStack. select(DoublePredicate predicate)
default ImmutableDoubleStack
ImmutableDoubleStack. selectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleStack including all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleStack
ImmutableDoubleStack. tap(DoubleProcedure procedure)
ImmutableDoubleStack
DoubleStack. toImmutable()
-
Uses of ImmutableDoubleStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
ImmutableArrayStack. collectDouble(DoubleFunction<? super T> doubleFunction)
Deprecated.ImmutableDoubleStack
ImmutableEmptyStack. collectDouble(DoubleFunction<? super T> doubleFunction)
ImmutableDoubleStack
ImmutableNotEmptyStack. collectDouble(DoubleFunction<? super T> function)
-
Uses of ImmutableDoubleStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableDoubleStack 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 ImmutableDoubleStack Modifier and Type Field Description (package private) static ImmutableDoubleStack
ImmutableDoubleEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. empty()
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. of()
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. of(double one)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. of(double... items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAll(java.util.stream.DoubleStream items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleArrayStack. pop()
ImmutableDoubleStack
ImmutableDoubleArrayStack. pop(int count)
ImmutableDoubleStack
ImmutableDoubleEmptyStack. pop()
ImmutableDoubleStack
ImmutableDoubleEmptyStack. pop(int count)
ImmutableDoubleStack
ImmutableDoubleSingletonStack. pop()
ImmutableDoubleStack
ImmutableDoubleSingletonStack. pop(int count)
ImmutableDoubleStack
ImmutableDoubleArrayStack. push(double item)
ImmutableDoubleStack
ImmutableDoubleEmptyStack. push(double element)
ImmutableDoubleStack
ImmutableDoubleSingletonStack. push(double element)
ImmutableDoubleStack
ImmutableDoubleArrayStack. reject(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleEmptyStack. reject(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleSingletonStack. reject(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleArrayStack. select(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleEmptyStack. select(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleSingletonStack. select(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleArrayStack. toImmutable()
ImmutableDoubleStack
ImmutableDoubleEmptyStack. toImmutable()
ImmutableDoubleStack
ImmutableDoubleSingletonStack. toImmutable()
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. with()
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. with(double one)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. with(double... items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Double> iterable)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAll(java.util.stream.DoubleStream items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAllReversed(DoubleIterable items)
-
Uses of ImmutableDoubleStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableDoubleStack Modifier and Type Method Description ImmutableDoubleStack
DoubleArrayStack. toImmutable()
ImmutableDoubleStack
SynchronizedDoubleStack. toImmutable()
ImmutableDoubleStack
UnmodifiableDoubleStack. toImmutable()
-
Uses of ImmutableDoubleStack in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableDoubleStack Modifier and Type Method Description static ImmutableDoubleStack
PrimitiveStreams. iDoubleStack(java.util.stream.DoubleStream stream)
-