yield {Streamer} | R Documentation |
yield
invoked on a stream yields one chunk of data or, if the
stream is complete, a length zero element of the data. Successive
invocations of yield
produce successive chunks of data.
yield(x, ...)
x |
A |
... |
Additional arguments, currently unused. |
A chunk of data, with the specific notion of chunk defined by the final component of the stream.
Martin Morgan mtmorgan@fhcrc.org
## see example(Stream)