Uses of Interface
civitas.celestis.util.tuple.FloatTuple
Packages that use FloatTuple
-
Uses of FloatTuple in civitas.celestis.util.array
Methods in civitas.celestis.util.array that return FloatTuple -
Uses of FloatTuple in civitas.celestis.util.tuple
Classes in civitas.celestis.util.tuple that implement FloatTupleModifier and TypeClassDescriptionclassA tuple with one element.classAn immutable type containing two primitivefloats.classAn immutable type containing three primitivefloats.classAn immutable type containing four primitivefloats.classAn array-based tuple which holds an arbitrary element of typefloat.Methods in civitas.celestis.util.tuple that return FloatTupleModifier and TypeMethodDescriptionstatic FloatTupleFloatTuple.empty()Returns an empty float tuple.Float1.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.ArrayTuple.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.Object1.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.Object2.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.Object3.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.Object4.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.Tuple.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this tuple, then returns a new tuple containing the return values of the functionf.static FloatTupleFloatTuple.of(float... components) Creates a new float tuple from the provided array of components.static FloatTupleCreates a new float tuple from the provided array of components.Constructors in civitas.celestis.util.tuple with parameters of type FloatTupleModifierConstructorDescriptionFloat1(FloatTuple t) Creates a new tuple.Float2(FloatTuple t) Creates a newFloat2.Float3(FloatTuple t) Creates a newFloat3.Float4(FloatTuple t) Creates a newFloat4.Creates a new array tuple.