Uses of Interface
org.eclipse.collections.api.block.function.primitive.FloatToFloatFunction

Packages that use FloatToFloatFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
  • Uses of FloatToFloatFunction in org.eclipse.collections.api

    Methods in org.eclipse.collections.api with parameters of type FloatToFloatFunction
    Modifier and Type
    Method
    Description
    default <R extends MutableFloatCollection>
    R
    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.
    LazyFloatIterable.collectFloat(FloatToFloatFunction function)
     
  • Uses of FloatToFloatFunction in org.eclipse.collections.api.map.primitive

    Modifier and Type
    Method
    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
    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
    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
    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.