| 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 DoubleList |
DoubleList.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableDoubleList |
MutableDoubleList.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableDoubleList |
ImmutableDoubleList.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.
|
default DoubleList |
DoubleList.selectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleList including all elements with corresponding indexes matching the specified predicate.
|
default MutableDoubleList |
MutableDoubleList.selectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableDoubleList |
ImmutableDoubleList.selectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleIntMap |
DoubleIntMap.reject(DoubleIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableDoubleIntMap |
MutableDoubleIntMap.reject(DoubleIntPredicate predicate) |
ImmutableDoubleIntMap |
ImmutableDoubleIntMap.reject(DoubleIntPredicate predicate) |
DoubleIntMap |
DoubleIntMap.select(DoubleIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableDoubleIntMap |
MutableDoubleIntMap.select(DoubleIntPredicate predicate) |
ImmutableDoubleIntMap |
ImmutableDoubleIntMap.select(DoubleIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleDoubleIterable |
ReversibleDoubleIterable.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new ReversibleDoubleIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedDoubleIterable |
OrderedDoubleIterable.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new OrderedDoubleIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableDoubleCollection> |
OrderedDoubleIterable.rejectWithIndex(DoubleIntPredicate predicate,
R target)
Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleDoubleIterable |
ReversibleDoubleIterable.selectWithIndex(DoubleIntPredicate predicate)
Returns a new ReversibleDoubleIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedDoubleIterable |
OrderedDoubleIterable.selectWithIndex(DoubleIntPredicate predicate)
Returns a new OrderedDoubleIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableDoubleCollection> |
OrderedDoubleIterable.selectWithIndex(DoubleIntPredicate predicate,
R target)
Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default DoubleStack |
DoubleStack.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableDoubleStack |
MutableDoubleStack.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableDoubleStack |
ImmutableDoubleStack.rejectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleStack excluding all elements with corresponding indexes matching the specified predicate.
|
default DoubleStack |
DoubleStack.selectWithIndex(DoubleIntPredicate predicate)
Returns a new DoubleStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableDoubleStack |
MutableDoubleStack.selectWithIndex(DoubleIntPredicate predicate)
Returns a new MutableDoubleStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableDoubleStack |
ImmutableDoubleStack.selectWithIndex(DoubleIntPredicate predicate)
Returns a new ImmutableDoubleStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.