| 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 LongList |
LongList.rejectWithIndex(LongIntPredicate predicate)
Returns a new LongList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableLongList |
MutableLongList.rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableLongList |
ImmutableLongList.rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList excluding all elements with corresponding indexes matching the specified predicate.
|
default LongList |
LongList.selectWithIndex(LongIntPredicate predicate)
Returns a new LongList including all elements with corresponding indexes matching the specified predicate.
|
default MutableLongList |
MutableLongList.selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableLongList |
ImmutableLongList.selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
LongIntMap |
LongIntMap.reject(LongIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableLongIntMap |
MutableLongIntMap.reject(LongIntPredicate predicate) |
ImmutableLongIntMap |
ImmutableLongIntMap.reject(LongIntPredicate predicate) |
LongIntMap |
LongIntMap.select(LongIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableLongIntMap |
MutableLongIntMap.select(LongIntPredicate predicate) |
ImmutableLongIntMap |
ImmutableLongIntMap.select(LongIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleLongIterable |
ReversibleLongIterable.rejectWithIndex(LongIntPredicate predicate)
Returns a new ReversibleLongIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedLongIterable |
OrderedLongIterable.rejectWithIndex(LongIntPredicate predicate)
Returns a new OrderedLongIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableLongCollection> |
OrderedLongIterable.rejectWithIndex(LongIntPredicate predicate,
R target)
Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleLongIterable |
ReversibleLongIterable.selectWithIndex(LongIntPredicate predicate)
Returns a new ReversibleLongIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedLongIterable |
OrderedLongIterable.selectWithIndex(LongIntPredicate predicate)
Returns a new OrderedLongIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableLongCollection> |
OrderedLongIterable.selectWithIndex(LongIntPredicate predicate,
R target)
Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default LongStack |
LongStack.rejectWithIndex(LongIntPredicate predicate)
Returns a new LongStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableLongStack |
MutableLongStack.rejectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableLongStack |
ImmutableLongStack.rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack excluding all elements with corresponding indexes matching the specified predicate.
|
default LongStack |
LongStack.selectWithIndex(LongIntPredicate predicate)
Returns a new LongStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableLongStack |
MutableLongStack.selectWithIndex(LongIntPredicate predicate)
Returns a new MutableLongStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableLongStack |
ImmutableLongStack.selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.