public interface BooleanToFloatGenerator
Instances of
BooleanToFloatGenerator
represent
generator functions which take boolean
s as input
and yield sequences of values of
type float
. Such instances are created by
lambda expressions of the XL programming language, e.g.,
BooleanToFloatGenerator f = boolean x => float*
some generator expression containing x;
.- Author:
- Ole Kniemeyer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
evaluateFloat
(FloatConsumer cons, boolean x) Generates the sequence of values for parameterx
.