FloatBinaryFunction
class FloatBinaryFunction<A, OA : ObservableValue<A>, B, OB : ObservableValue<B>>(argA: OA, argB: OB, lambda: (A, B) -> Float) : BinaryFunction<Float, A, OA, B, OB> , ObservableFloat
Boilerplate which avoids having to use generics. An ObservableFloat which is calculated from 2 (binary) other ObservableValues.
See BinaryFunction (PropertyFunctions).