de.grogra.xl.lang
Interface ObjectToFloatGenerator<K>


public interface ObjectToFloatGenerator<K>

Instances of ObjectToFloatGenerator represent generator functions which take Ks as input and yield sequences of values of type float. Such instances are created by lambda expressions of the XL programming language, e.g., ObjectToFloatGenerator f = K x => float* some generator expression containing x;.

Author:
Ole Kniemeyer

Method Summary
 void evaluateFloat(FloatConsumer cons, K x)
          Generates the sequence of values for parameter x.
 

Method Detail

evaluateFloat

void evaluateFloat(FloatConsumer cons,
                   K x)
Generates the sequence of values for parameter x.

Parameters:
cons - each value is yielded to this consumer
x - where the generator function is to be evaluated