public interface BooleanToVoid
Instances of
BooleanToVoid represent functions
which take booleans as input and return values of
type void. Such instances are created by
lambda expressions of the XL programming language, e.g.,
BooleanToVoid f = boolean x => void
some expression containing x;.- Author:
- Ole Kniemeyer
-
Method Summary
Modifier and TypeMethodDescriptionvoidevaluateVoid(boolean x) Computes the value of this function atx.
-
Method Details
-
evaluateVoid
void evaluateVoid(boolean x) Computes the value of this function atx.- Parameters:
x- where the function is to be evaluated
-