| Package | Description |
|---|---|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| 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 |
|---|---|
ImmutableLongStack |
ImmutableLongStackFactory.empty() |
ImmutableLongStack |
ImmutableLongStackFactory.of()
Same as
ImmutableLongStackFactory.empty(). |
ImmutableLongStack |
ImmutableLongStackFactory.of(long... items)
|
ImmutableLongStack |
ImmutableLongStackFactory.of(long one)
Same as
ImmutableLongStackFactory.with(long). |
ImmutableLongStack |
ImmutableLongStackFactory.ofAll(Iterable<Long> iterable)
|
ImmutableLongStack |
ImmutableLongStackFactory.ofAll(LongIterable items)
|
ImmutableLongStack |
ImmutableLongStackFactory.ofAll(LongStream items) |
ImmutableLongStack |
ImmutableLongStackFactory.ofAllReversed(LongIterable items)
|
ImmutableLongStack |
ImmutableLongStackFactory.with()
Same as
ImmutableLongStackFactory.empty(). |
ImmutableLongStack |
ImmutableLongStackFactory.with(long... items) |
ImmutableLongStack |
ImmutableLongStackFactory.with(long one) |
ImmutableLongStack |
ImmutableLongStackFactory.withAll(Iterable<Long> iterable) |
ImmutableLongStack |
ImmutableLongStackFactory.withAll(LongIterable items) |
ImmutableLongStack |
ImmutableLongStackFactory.withAll(LongStream items) |
ImmutableLongStack |
ImmutableLongStackFactory.withAllReversed(LongIterable items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongStack |
ImmutableStack.collectLong(LongFunction<? super T> longFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableLongStack |
ImmutableLongStack.pop() |
ImmutableLongStack |
ImmutableLongStack.pop(int count) |
ImmutableLongStack |
ImmutableLongStack.push(long item) |
ImmutableLongStack |
ImmutableLongStack.reject(LongPredicate predicate) |
default ImmutableLongStack |
ImmutableLongStack.rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack excluding all elements with corresponding indexes matching the specified predicate.
|
ImmutableLongStack |
ImmutableLongStack.select(LongPredicate predicate) |
default ImmutableLongStack |
ImmutableLongStack.selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableLongStack |
ImmutableLongStack.tap(LongProcedure procedure) |
ImmutableLongStack |
LongStack.toImmutable() |
Copyright © 2004–2023. All rights reserved.