Uses of Interface
civitas.celestis.util.function.FloatFunction

Packages that use FloatFunction
  • Uses of FloatFunction in civitas.celestis.util.array

    Methods in civitas.celestis.util.array with parameters of type FloatFunction
    Modifier and Type
    Method
    Description
    <F> SafeArray<F>
    FloatArray.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each element of this array, then returns a new array containing the return values of the function f.
    <F> SafeArray<F>
    FloatFastArray.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each element of this array, then returns a new array containing the return values of the function f.
  • Uses of FloatFunction in civitas.celestis.util.grid

    Methods in civitas.celestis.util.grid with parameters of type FloatFunction
    Modifier and Type
    Method
    Description
    <F> Grid<F>
    FloatArrayGrid.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.
    <F> Grid<F>
    FloatGrid.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.
  • Uses of FloatFunction in civitas.celestis.util.tuple

    Methods in civitas.celestis.util.tuple with parameters of type FloatFunction
    Modifier and Type
    Method
    Description
    <F> Tuple<F>
    Float1.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    <F> Tuple<F>
    Float2.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    <F> Tuple<F>
    Float3.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    <F> Tuple<F>
    Float4.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    <F> Tuple<F>
    FloatArrayTuple.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    <F> Tuple<F>
    FloatTuple.mapToObj(FloatFunction<? extends F> f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.