| 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 |
|---|---|
ImmutableIntStack |
ImmutableIntStackFactory.empty() |
ImmutableIntStack |
ImmutableIntStackFactory.of()
Same as
ImmutableIntStackFactory.empty(). |
ImmutableIntStack |
ImmutableIntStackFactory.of(int... items)
Same as
ImmutableIntStackFactory.with(int[]). |
ImmutableIntStack |
ImmutableIntStackFactory.of(int one)
Same as
ImmutableIntStackFactory.with(int). |
ImmutableIntStack |
ImmutableIntStackFactory.ofAll(IntIterable items)
|
ImmutableIntStack |
ImmutableIntStackFactory.ofAll(IntStream items) |
ImmutableIntStack |
ImmutableIntStackFactory.ofAll(Iterable<Integer> iterable)
|
ImmutableIntStack |
ImmutableIntStackFactory.ofAllReversed(IntIterable items)
|
ImmutableIntStack |
ImmutableIntStackFactory.with()
Same as
ImmutableIntStackFactory.empty(). |
ImmutableIntStack |
ImmutableIntStackFactory.with(int... items) |
ImmutableIntStack |
ImmutableIntStackFactory.with(int one) |
ImmutableIntStack |
ImmutableIntStackFactory.withAll(IntIterable items) |
ImmutableIntStack |
ImmutableIntStackFactory.withAll(IntStream items) |
ImmutableIntStack |
ImmutableIntStackFactory.withAll(Iterable<Integer> iterable) |
ImmutableIntStack |
ImmutableIntStackFactory.withAllReversed(IntIterable items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntStack |
ImmutableStack.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntStack |
ImmutableIntStack.pop() |
ImmutableIntStack |
ImmutableIntStack.pop(int count) |
ImmutableIntStack |
ImmutableIntStack.push(int item) |
ImmutableIntStack |
ImmutableIntStack.reject(IntPredicate predicate) |
ImmutableIntStack |
ImmutableIntStack.select(IntPredicate predicate) |
default ImmutableIntStack |
ImmutableIntStack.tap(IntProcedure procedure) |
ImmutableIntStack |
IntStack.toImmutable() |
Copyright © 2004–2020. All rights reserved.