| 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 FloatList |
FloatList.rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableFloatList |
MutableFloatList.rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableFloatList |
ImmutableFloatList.rejectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList excluding all elements with corresponding indexes matching the specified predicate.
|
default FloatList |
FloatList.selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatList including all elements with corresponding indexes matching the specified predicate.
|
default MutableFloatList |
MutableFloatList.selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatList including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableFloatList |
ImmutableFloatList.selectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatList including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
FloatIntMap |
FloatIntMap.reject(FloatIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableFloatIntMap |
MutableFloatIntMap.reject(FloatIntPredicate predicate) |
ImmutableFloatIntMap |
ImmutableFloatIntMap.reject(FloatIntPredicate predicate) |
FloatIntMap |
FloatIntMap.select(FloatIntPredicate predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableFloatIntMap |
MutableFloatIntMap.select(FloatIntPredicate predicate) |
ImmutableFloatIntMap |
ImmutableFloatIntMap.select(FloatIntPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
default ReversibleFloatIterable |
ReversibleFloatIterable.rejectWithIndex(FloatIntPredicate predicate)
Returns a new ReversibleFloatIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default OrderedFloatIterable |
OrderedFloatIterable.rejectWithIndex(FloatIntPredicate predicate)
Returns a new OrderedFloatIterable excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableFloatCollection> |
OrderedFloatIterable.rejectWithIndex(FloatIntPredicate predicate,
R target)
Returns a new MutableFloatCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default ReversibleFloatIterable |
ReversibleFloatIterable.selectWithIndex(FloatIntPredicate predicate)
Returns a new ReversibleFloatIterable including all elements with corresponding indexes matching the specified predicate.
|
default OrderedFloatIterable |
OrderedFloatIterable.selectWithIndex(FloatIntPredicate predicate)
Returns a new OrderedFloatIterable including all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableFloatCollection> |
OrderedFloatIterable.selectWithIndex(FloatIntPredicate predicate,
R target)
Returns a new MutableFloatCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Method and Description |
|---|---|
default FloatStack |
FloatStack.rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack excluding all elements with corresponding indexes matching the specified predicate.
|
default MutableFloatStack |
MutableFloatStack.rejectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.
|
default ImmutableFloatStack |
ImmutableFloatStack.rejectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatStack excluding all elements with corresponding indexes matching the specified predicate.
|
default FloatStack |
FloatStack.selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack including all elements with corresponding indexes matching the specified predicate.
|
default MutableFloatStack |
MutableFloatStack.selectWithIndex(FloatIntPredicate predicate)
Returns a new MutableFloatStack including all elements with corresponding indexes matching the specified predicate.
|
default ImmutableFloatStack |
ImmutableFloatStack.selectWithIndex(FloatIntPredicate predicate)
Returns a new ImmutableFloatStack including all elements with corresponding indexes matching the specified predicate.
|
Copyright © 2004–2022. All rights reserved.