| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.stack.primitive | |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleStack |
MutableDoubleStackFactory.empty() |
MutableDoubleStack |
MutableDoubleStackFactory.of()
Same as
MutableDoubleStackFactory.empty(). |
MutableDoubleStack |
MutableDoubleStackFactory.of(double... items)
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleIterable items)
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleStream items) |
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(Iterable<Double> iterable)
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAllReversed(DoubleIterable items)
|
MutableDoubleStack |
MutableDoubleStackFactory.with()
Same as
MutableDoubleStackFactory.empty(). |
MutableDoubleStack |
MutableDoubleStackFactory.with(double... items) |
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleIterable items) |
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleStream items) |
MutableDoubleStack |
MutableDoubleStackFactory.withAll(Iterable<Double> iterable) |
MutableDoubleStack |
MutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleStack |
MutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and 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) |
MutableDoubleStack |
MutableDoubleStack.select(DoublePredicate predicate) |
default MutableDoubleStack |
MutableDoubleStack.tap(DoubleProcedure procedure) |
Copyright © 2004–2020. All rights reserved.