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.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stream |
Modifier and Type | Method | Description |
---|---|---|
MutableDoubleStack |
MutableDoubleStackFactory.empty() |
|
MutableDoubleStack |
MutableDoubleStackFactory.of() |
Same as
MutableDoubleStackFactory.empty() . |
MutableDoubleStack |
MutableDoubleStackFactory.of(double... items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(Iterable<Double> iterable) |
Same as
#withAll(IterableDouble) . |
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleStream items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAllReversed(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.with() |
Same as
MutableDoubleStackFactory.empty() . |
MutableDoubleStack |
MutableDoubleStackFactory.with(double... items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAll(Iterable<Double> iterable) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleStream items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
Modifier and Type | Method | Description |
---|---|---|
MutableDoubleStack |
MutableStack.collectDouble(DoubleFunction<? super T> doubleFunction) |
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) |
|
MutableDoubleStack |
MutableDoubleStack.select(DoublePredicate predicate) |
|
default MutableDoubleStack |
MutableDoubleStack.tap(DoubleProcedure procedure) |
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) |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleArrayStack |
DoubleArrayStack is similar to
ArrayStack , and is memory-optimized for double primitives. |
class |
SynchronizedDoubleStack |
A synchronized view of a
MutableDoubleStack . |
class |
UnmodifiableDoubleStack |
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.
|
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(Iterable<Double> iterable) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.ofAll(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 |
DoubleArrayStack.select(DoublePredicate predicate) |
|
MutableDoubleStack |
SynchronizedDoubleStack.select(DoublePredicate predicate) |
|
MutableDoubleStack |
UnmodifiableDoubleStack.select(DoublePredicate predicate) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.with() |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.with(double... items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAll(Iterable<Double> iterable) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAll(DoubleStream items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAllReversed(DoubleIterable items) |
Constructor | Description |
---|---|
SynchronizedDoubleStack(MutableDoubleStack stack) |
|
SynchronizedDoubleStack(MutableDoubleStack stack,
Object newLock) |
|
UnmodifiableDoubleStack(MutableDoubleStack stack) |
Modifier and Type | Method | Description |
---|---|---|
static MutableDoubleStack |
PrimitiveStreams.mDoubleStack(DoubleStream stream) |
Copyright © 2004–2019. All rights reserved.