de.grogra.xl.lang
Interface VoidToVoid


public interface VoidToVoid

Instances of VoidToVoid represent functions which take voids 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
 void evaluateVoid()
          Computes the value of this function.
 

Method Detail

evaluateVoid

void evaluateVoid()
Computes the value of this function.