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