Class Float2DoubleFunctions.SynchronizedFunction

java.lang.Object
it.unimi.dsi.fastutil.floats.Float2DoubleFunctions.SynchronizedFunction
All Implemented Interfaces:
Float2DoubleFunction, Function<Float,​Double>, Serializable, DoubleUnaryOperator, Function<Float,​Double>
Direct Known Subclasses:
Float2DoubleMaps.SynchronizedMap
Enclosing class:
Float2DoubleFunctions

public static class Float2DoubleFunctions.SynchronizedFunction
extends Object
implements Float2DoubleFunction, Serializable
A synchronized wrapper class for functions.
See Also:
Serialized Form
  • Method Summary

    Modifier and Type Method Description
    Double apply​(Float key)
    Deprecated.
    Please use the corresponding type-specific method instead.
    double applyAsDouble​(double operand)
    Deprecated.
    Please use the corresponding type-specific method instead.
    void clear()
    Removes all associations from this function (optional operation).
    boolean containsKey​(float k)
    Returns true if this function contains a mapping for the specified key.
    boolean containsKey​(Object k)
    Deprecated.
    double defaultReturnValue()
    Gets the default return value.
    void defaultReturnValue​(double defRetValue)
    Sets the default return value (optional operation).
    boolean equals​(Object o)  
    double get​(float k)
    Returns the value to which the given key is mapped.
    Double get​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int hashCode()  
    double put​(float k, double v)
    Adds a pair to the map (optional operation).
    Double put​(Float k, Double v)
    Deprecated.
    Please use the corresponding type-specific method instead.
    double remove​(float k)
    Removes the mapping with the given key (optional operation).
    Double remove​(Object k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    int size()
    Returns the intended number of keys in this function, or -1 if no such number exists.
    String toString()  

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.function.DoubleUnaryOperator

    andThen, compose

    Methods inherited from interface java.util.function.Function

    andThen, compose