Handbook
Glossary
yield-from ( gen -- )
Vocabulary
generators
Inputs
gen
a
generator
Outputs
None
Word description
Delegate computation to the specified generator until it is exhausted, before resuming computation in the current generator.
Definition
USING:
kernel
;
IN:
generators
:
yield-from
( gen -- )
'[
[
_
next
yield
t
]
loop
]
[
]
catch-stop-generator
;