| 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 |
|---|---|
MutableShortStack |
MutableShortStackFactory.empty() |
MutableShortStack |
MutableShortStackFactory.of()
Same as
MutableShortStackFactory.empty(). |
MutableShortStack |
MutableShortStackFactory.of(short... items)
|
MutableShortStack |
MutableShortStackFactory.ofAll(Iterable<Short> iterable)
|
MutableShortStack |
MutableShortStackFactory.ofAll(ShortIterable items)
|
MutableShortStack |
MutableShortStackFactory.ofAllReversed(ShortIterable items)
|
MutableShortStack |
MutableShortStackFactory.with()
Same as
MutableShortStackFactory.empty(). |
MutableShortStack |
MutableShortStackFactory.with(short... items) |
MutableShortStack |
MutableShortStackFactory.withAll(Iterable<Short> iterable) |
MutableShortStack |
MutableShortStackFactory.withAll(ShortIterable items) |
MutableShortStack |
MutableShortStackFactory.withAllReversed(ShortIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortStack |
MutableStack.collectShort(ShortFunction<? super T> shortFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableShortStack |
MutableShortStack.asSynchronized() |
MutableShortStack |
MutableShortStack.asUnmodifiable() |
default MutableShortStack |
MutableShortStack.newEmpty()
Creates a new empty mutable version of the same stack type.
|
MutableShortStack |
MutableShortStack.reject(ShortPredicate predicate) |
default MutableShortStack |
MutableShortStack.rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack excluding all elements with corresponding indexes matching the specified predicate.
|
MutableShortStack |
MutableShortStack.select(ShortPredicate predicate) |
default MutableShortStack |
MutableShortStack.selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableShortStack |
MutableShortStack.tap(ShortProcedure procedure) |
Copyright © 2004–2022. All rights reserved.