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

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

    Methods in civitas.celestis.util.array with parameters of type FloatUnaryOperator
    Modifier and Type
    Method
    Description
    FloatArray.map(FloatUnaryOperator 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.
    FloatFastArray.map(FloatUnaryOperator 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.
    void
    FloatArray.update(int i, FloatUnaryOperator f)
    Updates the ith element of this array with the provided update function f.
    void
    FloatArray.update(FloatUnaryOperator f)
    Applies the provided update function f to each element of this array, then assigns the return value of the function to the corresponding index of this array.
    void
    FloatFastArray.update(int i, FloatUnaryOperator f)
    Updates the ith element of this array with the provided update function f.
    void
    FloatFastArray.update(FloatUnaryOperator f)
    Applies the provided update function f to each element of this array, then assigns the return value of the function to the corresponding index of this array.
  • Uses of FloatUnaryOperator in civitas.celestis.util.grid

    Methods in civitas.celestis.util.grid with parameters of type FloatUnaryOperator
    Modifier and Type
    Method
    Description
    FloatArrayGrid.map(FloatUnaryOperator 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.
    FloatGrid.map(FloatUnaryOperator 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.
    void
    FloatArrayGrid.update(FloatUnaryOperator f)
    Applies the provided update function f to every element of this grid, assigning the return value of the function to the corresponding index of this grid.
    void
    Applies the provided update function f to every element of this grid, assigning the return value of the function to the corresponding index of this grid.
  • Uses of FloatUnaryOperator in civitas.celestis.util.tuple

    Methods in civitas.celestis.util.tuple with parameters of type FloatUnaryOperator
    Modifier and Type
    Method
    Description
    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.
    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.
    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.
    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.
    FloatArrayTuple.map(FloatUnaryOperator 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.
    FloatTuple.map(FloatUnaryOperator 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.