| 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 |
|---|---|
MutableIntStack |
MutableIntStackFactory.empty() |
MutableIntStack |
MutableIntStackFactory.of()
Same as
MutableIntStackFactory.empty(). |
MutableIntStack |
MutableIntStackFactory.of(int... items)
Same as
MutableIntStackFactory.with(int[]). |
MutableIntStack |
MutableIntStackFactory.ofAll(IntIterable items)
|
MutableIntStack |
MutableIntStackFactory.ofAll(IntStream items) |
MutableIntStack |
MutableIntStackFactory.ofAll(Iterable<Integer> iterable)
|
MutableIntStack |
MutableIntStackFactory.ofAllReversed(IntIterable items)
|
MutableIntStack |
MutableIntStackFactory.with()
Same as
MutableIntStackFactory.empty(). |
MutableIntStack |
MutableIntStackFactory.with(int... items) |
MutableIntStack |
MutableIntStackFactory.withAll(IntIterable items) |
MutableIntStack |
MutableIntStackFactory.withAll(IntStream items) |
MutableIntStack |
MutableIntStackFactory.withAll(Iterable<Integer> iterable) |
MutableIntStack |
MutableIntStackFactory.withAllReversed(IntIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntStack |
MutableStack.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntStack |
MutableIntStack.asSynchronized() |
MutableIntStack |
MutableIntStack.asUnmodifiable() |
default MutableIntStack |
MutableIntStack.newEmpty()
Creates a new empty mutable version of the same stack type.
|
MutableIntStack |
MutableIntStack.reject(IntPredicate predicate) |
MutableIntStack |
MutableIntStack.select(IntPredicate predicate) |
default MutableIntStack |
MutableIntStack.tap(IntProcedure procedure) |
Copyright © 2004–2021. All rights reserved.