Module xl.core

Interface ObjectToVoid<K>


public interface ObjectToVoid<K>
Instances of ObjectToVoid represent functions which take Ks as input and return values of type void. Such instances are created by lambda expressions of the XL programming language, e.g., ObjectToVoid f = K x => void some expression containing x;.
Author:
Ole Kniemeyer
  • Method Summary

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

    • evaluateVoid

      void evaluateVoid(K x)
      Computes the value of this function at x.
      Parameters:
      x - where the function is to be evaluated