| 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 IntList |
IntList.rejectWithIndex(IntIntPredicate predicate)
Returns a new IntList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableIntList |
MutableIntList.rejectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableIntList |
ImmutableIntList.rejectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntList excluding all elements with corresponding indexes matching the specified predicate.
|
default IntList |
IntList.selectWithIndex(IntIntPredicate predicate)
Returns a new IntList including all elements with corresponding indexes matching the specified predicate.
|
default MutableIntList |
MutableIntList.selectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableIntList |
ImmutableIntList.selectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
IntIntMap |
IntIntMap.reject(IntIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableIntIntMap |
MutableIntIntMap.reject(IntIntPredicate predicate) |
ImmutableIntIntMap |
ImmutableIntIntMap.reject(IntIntPredicate predicate) |
IntIntMap |
IntIntMap.select(IntIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableIntIntMap |
MutableIntIntMap.select(IntIntPredicate predicate) |
ImmutableIntIntMap |
ImmutableIntIntMap.select(IntIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleIntIterable |
ReversibleIntIterable.rejectWithIndex(IntIntPredicate predicate)
Returns a new ReversibleIntIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedIntIterable |
OrderedIntIterable.rejectWithIndex(IntIntPredicate predicate)
Returns a new OrderedIntIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableIntCollection> |
OrderedIntIterable.rejectWithIndex(IntIntPredicate predicate,
R target)
Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleIntIterable |
ReversibleIntIterable.selectWithIndex(IntIntPredicate predicate)
Returns a new ReversibleIntIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedIntIterable |
OrderedIntIterable.selectWithIndex(IntIntPredicate predicate)
Returns a new OrderedIntIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableIntCollection> |
OrderedIntIterable.selectWithIndex(IntIntPredicate predicate,
R target)
Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default IntStack |
IntStack.rejectWithIndex(IntIntPredicate predicate)
Returns a new IntStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableIntStack |
MutableIntStack.rejectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableIntStack |
ImmutableIntStack.rejectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntStack excluding all elements with corresponding indexes matching the specified predicate.
|
default IntStack |
IntStack.selectWithIndex(IntIntPredicate predicate)
Returns a new IntStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableIntStack |
MutableIntStack.selectWithIndex(IntIntPredicate predicate)
Returns a new MutableIntStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableIntStack |
ImmutableIntStack.selectWithIndex(IntIntPredicate predicate)
Returns a new ImmutableIntStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.