| 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 ShortList |
ShortList.rejectWithIndex(ShortIntPredicate predicate)
Returns a new ShortList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableShortList |
MutableShortList.rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableShortList |
ImmutableShortList.rejectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortList excluding all elements with corresponding indexes matching the specified predicate.
|
default ShortList |
ShortList.selectWithIndex(ShortIntPredicate predicate)
Returns a new ShortList including all elements with corresponding indexes matching the specified predicate.
|
default MutableShortList |
MutableShortList.selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableShortList |
ImmutableShortList.selectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
ShortIntMap |
ShortIntMap.reject(ShortIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableShortIntMap |
MutableShortIntMap.reject(ShortIntPredicate predicate) |
ImmutableShortIntMap |
ImmutableShortIntMap.reject(ShortIntPredicate predicate) |
ShortIntMap |
ShortIntMap.select(ShortIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableShortIntMap |
MutableShortIntMap.select(ShortIntPredicate predicate) |
ImmutableShortIntMap |
ImmutableShortIntMap.select(ShortIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleShortIterable |
ReversibleShortIterable.rejectWithIndex(ShortIntPredicate predicate)
Returns a new ReversibleShortIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedShortIterable |
OrderedShortIterable.rejectWithIndex(ShortIntPredicate predicate)
Returns a new OrderedShortIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableShortCollection> |
OrderedShortIterable.rejectWithIndex(ShortIntPredicate predicate,
R target)
Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleShortIterable |
ReversibleShortIterable.selectWithIndex(ShortIntPredicate predicate)
Returns a new ReversibleShortIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedShortIterable |
OrderedShortIterable.selectWithIndex(ShortIntPredicate predicate)
Returns a new OrderedShortIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableShortCollection> |
OrderedShortIterable.selectWithIndex(ShortIntPredicate predicate,
R target)
Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default ShortStack |
ShortStack.rejectWithIndex(ShortIntPredicate predicate)
Returns a new ShortStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableShortStack |
MutableShortStack.rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableShortStack |
ImmutableShortStack.rejectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ShortStack |
ShortStack.selectWithIndex(ShortIntPredicate predicate)
Returns a new ShortStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableShortStack |
MutableShortStack.selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableShortStack |
ImmutableShortStack.selectWithIndex(ShortIntPredicate predicate)
Returns a new ImmutableShortStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2023. All rights reserved.