public interface VoidToFloat
Instances of
VoidToFloat
represent functions
which take void
s as input and return values of
type float
. Such instances are created by
lambda expressions of the XL programming language, e.g.,
VoidToFloat f = void => float
some expression;
.- Author:
- Ole Kniemeyer
-
Method Summary
-
Method Details
-
evaluateFloat
float evaluateFloat()Computes the value of this function.- Returns:
- function value
-