| 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 CharList |
CharList.rejectWithIndex(CharIntPredicate predicate)
Returns a new CharList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableCharList |
MutableCharList.rejectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableCharList |
ImmutableCharList.rejectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharList excluding all elements with corresponding indexes matching the specified predicate.
|
default CharList |
CharList.selectWithIndex(CharIntPredicate predicate)
Returns a new CharList including all elements with corresponding indexes matching the specified predicate.
|
default MutableCharList |
MutableCharList.selectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableCharList |
ImmutableCharList.selectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
CharIntMap |
CharIntMap.reject(CharIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableCharIntMap |
MutableCharIntMap.reject(CharIntPredicate predicate) |
ImmutableCharIntMap |
ImmutableCharIntMap.reject(CharIntPredicate predicate) |
CharIntMap |
CharIntMap.select(CharIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableCharIntMap |
MutableCharIntMap.select(CharIntPredicate predicate) |
ImmutableCharIntMap |
ImmutableCharIntMap.select(CharIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleCharIterable |
ReversibleCharIterable.rejectWithIndex(CharIntPredicate predicate)
Returns a new ReversibleCharIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedCharIterable |
OrderedCharIterable.rejectWithIndex(CharIntPredicate predicate)
Returns a new OrderedCharIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableCharCollection> |
OrderedCharIterable.rejectWithIndex(CharIntPredicate predicate,
R target)
Returns a new MutableCharCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleCharIterable |
ReversibleCharIterable.selectWithIndex(CharIntPredicate predicate)
Returns a new ReversibleCharIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedCharIterable |
OrderedCharIterable.selectWithIndex(CharIntPredicate predicate)
Returns a new OrderedCharIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableCharCollection> |
OrderedCharIterable.selectWithIndex(CharIntPredicate predicate,
R target)
Returns a new MutableCharCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default CharStack |
CharStack.rejectWithIndex(CharIntPredicate predicate)
Returns a new CharStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableCharStack |
MutableCharStack.rejectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableCharStack |
ImmutableCharStack.rejectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharStack excluding all elements with corresponding indexes matching the specified predicate.
|
default CharStack |
CharStack.selectWithIndex(CharIntPredicate predicate)
Returns a new CharStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableCharStack |
MutableCharStack.selectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableCharStack |
ImmutableCharStack.selectWithIndex(CharIntPredicate predicate)
Returns a new ImmutableCharStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.