de.grogra.xl.lang
Interface ByteToVoid


public interface ByteToVoid

Instances of ByteToVoid represent functions which take bytes as input and return values of type void. Such instances are created by lambda expressions of the XL programming language, e.g., ByteToVoid f = byte x => void some expression containing x;.

Author:
Ole Kniemeyer

Method Summary
 void evaluateVoid(byte x)
          Computes the value of this function at x.
 

Method Detail

evaluateVoid

void evaluateVoid(byte x)
Computes the value of this function at x.

Parameters:
x - where the function is to be evaluated