| Package | Description |
|---|---|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.ordered.primitive | |
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Method and Description |
|---|---|
default ByteList |
ByteList.rejectWithIndex(ByteIntPredicate predicate)
Returns a new ByteList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableByteList |
MutableByteList.rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableByteList |
ImmutableByteList.rejectWithIndex(ByteIntPredicate predicate)
Returns a new ImmutableByteList excluding all elements with corresponding indexes matching the specified predicate.
|
default ByteList |
ByteList.selectWithIndex(ByteIntPredicate predicate)
Returns a new ByteList including all elements with corresponding indexes matching the specified predicate.
|
default MutableByteList |
MutableByteList.selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableByteList |
ImmutableByteList.selectWithIndex(ByteIntPredicate predicate)
Returns a new ImmutableByteList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
ByteIntMap |
ByteIntMap.reject(ByteIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableByteIntMap |
MutableByteIntMap.reject(ByteIntPredicate predicate) |
ImmutableByteIntMap |
ImmutableByteIntMap.reject(ByteIntPredicate predicate) |
ByteIntMap |
ByteIntMap.select(ByteIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableByteIntMap |
MutableByteIntMap.select(ByteIntPredicate predicate) |
ImmutableByteIntMap |
ImmutableByteIntMap.select(ByteIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleByteIterable |
ReversibleByteIterable.rejectWithIndex(ByteIntPredicate predicate)
Returns a new ReversibleByteIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedByteIterable |
OrderedByteIterable.rejectWithIndex(ByteIntPredicate predicate)
Returns a new OrderedByteIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableByteCollection> |
OrderedByteIterable.rejectWithIndex(ByteIntPredicate predicate,
R target)
Returns a new MutableByteCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleByteIterable |
ReversibleByteIterable.selectWithIndex(ByteIntPredicate predicate)
Returns a new ReversibleByteIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedByteIterable |
OrderedByteIterable.selectWithIndex(ByteIntPredicate predicate)
Returns a new OrderedByteIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableByteCollection> |
OrderedByteIterable.selectWithIndex(ByteIntPredicate predicate,
R target)
Returns a new MutableByteCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default ByteStack |
ByteStack.rejectWithIndex(ByteIntPredicate predicate)
Returns a new ByteStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableByteStack |
MutableByteStack.rejectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableByteStack |
ImmutableByteStack.rejectWithIndex(ByteIntPredicate predicate)
Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ByteStack |
ByteStack.selectWithIndex(ByteIntPredicate predicate)
Returns a new ByteStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableByteStack |
MutableByteStack.selectWithIndex(ByteIntPredicate predicate)
Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableByteStack |
ImmutableByteStack.selectWithIndex(ByteIntPredicate predicate)
Returns a new ImmutableByteStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.