| 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 |
|---|---|
MutableByteStack |
MutableByteStackFactory.empty() |
MutableByteStack |
MutableByteStackFactory.of()
Same as
MutableByteStackFactory.empty(). |
MutableByteStack |
MutableByteStackFactory.of(byte... items)
Same as
MutableByteStackFactory.with(byte[]). |
MutableByteStack |
MutableByteStackFactory.ofAll(ByteIterable items)
|
MutableByteStack |
MutableByteStackFactory.ofAll(Iterable<Byte> iterable)
|
MutableByteStack |
MutableByteStackFactory.ofAllReversed(ByteIterable items)
|
MutableByteStack |
MutableByteStackFactory.with()
Same as
MutableByteStackFactory.empty(). |
MutableByteStack |
MutableByteStackFactory.with(byte... items) |
MutableByteStack |
MutableByteStackFactory.withAll(ByteIterable items) |
MutableByteStack |
MutableByteStackFactory.withAll(Iterable<Byte> iterable) |
MutableByteStack |
MutableByteStackFactory.withAllReversed(ByteIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteStack |
MutableStack.collectByte(ByteFunction<? super T> byteFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableByteStack |
MutableByteStack.asSynchronized() |
MutableByteStack |
MutableByteStack.asUnmodifiable() |
default MutableByteStack |
MutableByteStack.newEmpty()
Creates a new empty mutable version of the same stack type.
|
MutableByteStack |
MutableByteStack.reject(BytePredicate predicate) |
default MutableByteStack |
MutableByteStack.rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.
|
MutableByteStack |
MutableByteStack.select(BytePredicate predicate) |
default MutableByteStack |
MutableByteStack.selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableByteStack |
MutableByteStack.tap(ByteProcedure procedure) |
Copyright © 2004–2022. All rights reserved.