de.grogra.xl.lang
Interface FloatToVoid
public interface FloatToVoid
Instances of FloatToVoid represent functions
which take floats as input and return values of
type void. Such instances are created by
lambda expressions of the XL programming language, e.g.,
FloatToVoid f = float x => void
some expression containing x;.
- Author:
- Ole Kniemeyer
|
Method Summary |
void |
evaluateVoid(float x)
Computes the value of this function at x. |
evaluateVoid
void evaluateVoid(float x)
- Computes the value of this function at
x.
- Parameters:
x - where the function is to be evaluated