public interface ByteToObjectGenerator<V>
Instances of
ByteToObjectGenerator
represent
generator functions which take byte
s as input
and yield sequences of values of
type V
. Such instances are created by
lambda expressions of the XL programming language, e.g.,
ByteToObjectGenerator f = byte x => V*
some generator expression containing x;
.- Author:
- Ole Kniemeyer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
evaluateObject
(ObjectConsumer<? super V> cons, byte x) Generates the sequence of values for parameterx
.
-
Method Details
-
evaluateObject
Generates the sequence of values for parameterx
.- Parameters:
cons
- each value is yielded to this consumerx
- where the generator function is to be evaluated
-