Uses of Interface
civitas.celestis.util.function.FloatUnaryOperator
Packages that use FloatUnaryOperator
Package
Description
-
Uses of FloatUnaryOperator in civitas.celestis.util.array
Methods in civitas.celestis.util.array with parameters of type FloatUnaryOperatorModifier and TypeMethodDescriptionFloatArray.map(FloatUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.FloatFastArray.map(FloatUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.voidFloatArray.update(int i, FloatUnaryOperator f) Updates theith element of this array with the provided update functionf.voidFloatArray.update(FloatUnaryOperator f) Applies the provided update functionfto each element of this array, then assigns the return value of the function to the corresponding index of this array.voidFloatFastArray.update(int i, FloatUnaryOperator f) Updates theith element of this array with the provided update functionf.voidFloatFastArray.update(FloatUnaryOperator f) Applies the provided update functionfto 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 FloatUnaryOperatorModifier and TypeMethodDescriptionFloatArrayGrid.map(FloatUnaryOperator f) Applies the provided mapper functionfto 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 functionfto every element of this grid, then returns a new grid whose values are populated from that of the provided function's return values.voidFloatArrayGrid.update(FloatUnaryOperator f) Applies the provided update functionfto every element of this grid, assigning the return value of the function to the corresponding index of this grid.voidFloatGrid.update(FloatUnaryOperator f) Applies the provided update functionfto 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 FloatUnaryOperatorModifier and TypeMethodDescriptionFloat1.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.Float2.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.Float3.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.Float4.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.FloatArrayTuple.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.FloatTuple.map(FloatUnaryOperator f) Applies the provided mapper functionfto each component of this tuple, then returns a new tuple containing the return values of the functionf.