de.grogra.xl.lang
Interface VoidToObjectGenerator<V>

All Known Implementing Classes:
EventSupport.Queue, ObjectList, ObjectSynth, TreeIterator

public interface VoidToObjectGenerator<V>

Instances of VoidToObjectGenerator represent generator functions which take voids as input and yield sequences of values of type V. Such instances are created by lambda expressions of the XL programming language, e.g., VoidToObjectGenerator f = void => V* some generator expression;.

Author:
Ole Kniemeyer

Method Summary
 void evaluateObject(ObjectConsumer<? super V> cons)
          Generates the sequence of values.
 

Method Detail

evaluateObject

void evaluateObject(ObjectConsumer<? super V> cons)
Generates the sequence of values.

Parameters:
cons - each value is yielded to this consumer