Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableDoubleStack
Packages that use ImmutableDoubleStack
Package
Description
This package contains factory API for creating primitive stack instances.
This package contains interfaces for stack API.
This package contains mutable and immutable primitive stack API.
-
Uses of ImmutableDoubleStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableDoubleStackModifier and TypeMethodDescriptionImmutableDoubleStackFactory.empty()ImmutableDoubleStackFactory.of()Same asImmutableDoubleStackFactory.empty().ImmutableDoubleStackFactory.of(double one) ImmutableDoubleStackFactory.of(double... items) ImmutableDoubleStackFactory.ofAll(DoubleStream items) ImmutableDoubleStackFactory.ofAll(DoubleIterable items) ImmutableDoubleStackFactory.ofAllReversed(DoubleIterable items) ImmutableDoubleStackFactory.with()Same asImmutableDoubleStackFactory.empty().ImmutableDoubleStackFactory.with(double one) ImmutableDoubleStackFactory.with(double... items) ImmutableDoubleStackFactory.withAll(DoubleStream items) ImmutableDoubleStackFactory.withAll(DoubleIterable items) ImmutableDoubleStackFactory.withAllReversed(DoubleIterable items) -
Uses of ImmutableDoubleStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableDoubleStackModifier and TypeMethodDescriptionImmutableStack.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 ImmutableDoubleStackModifier and TypeMethodDescriptionImmutableDoubleStack.pop()ImmutableDoubleStack.pop(int count) ImmutableDoubleStack.push(double item) ImmutableDoubleStack.reject(DoublePredicate predicate) default ImmutableDoubleStackImmutableDoubleStack.rejectWithIndex(DoubleIntPredicate predicate) Returns a new ImmutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableDoubleStack.select(DoublePredicate predicate) default ImmutableDoubleStackImmutableDoubleStack.selectWithIndex(DoubleIntPredicate predicate) Returns a new ImmutableDoubleStack including all elements with corresponding indexes matching the specified predicate.default ImmutableDoubleStackImmutableDoubleStack.tap(DoubleProcedure procedure) DoubleStack.toImmutable()