call-with-values[procedure] call-with-values producer consumer
R5RS, R6RS: Calls its producer argument with no values and a
continuation that, when passed some values, calls the consumer procedure
with
those values as arguments.
The continuation for the call to consumer is the continuation
of the call to call-with-values.
See also values, receive, let-values.
|