Module xl.core

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

    Modifier and Type
    Method
    Description
    void
    Computes the value of this function.
  • Method Details

    • evaluateVoid

      void evaluateVoid()
      Computes the value of this function.