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