| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections 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.
|
| Modifier and Type | Method and Description |
|---|---|
LazyFloatIterable |
LazyFloatIterable.collectFloat(FloatToFloatFunction function) |
default <R extends MutableFloatCollection> |
FloatIterable.collectFloat(FloatToFloatFunction function,
R target)
Returns the target
MutableFloatCollection with the results of applying the specified function on each element
of the source collection. |
| Modifier and Type | Method and Description |
|---|---|
float |
MutableFloatFloatMap.getIfAbsentPutWithKey(float key,
FloatToFloatFunction function)
Retrieves the value associated with the key if one exists; if it does not,
associates the result of invoking the value function with the key.
|
float |
MutableByteFloatMap.updateValue(byte key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableCharFloatMap.updateValue(char key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableDoubleFloatMap.updateValue(double key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableFloatFloatMap.updateValue(float key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableIntFloatMap.updateValue(int key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableObjectFloatMap.updateValue(K key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableLongFloatMap.updateValue(long key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableShortFloatMap.updateValue(short key,
float initialValueIfAbsent,
FloatToFloatFunction function)
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
Copyright © 2004–2020. All rights reserved.