Handbook
Glossary
continue ( continuation -- * )
Factor handbook
»
The language
»
Continuations
Prev:
callcc1 ( quot -- obj )
Next:
continue-with ( obj continuation -- * )
Vocabulary
continuations
Inputs
continuation
a
continuation
Outputs
None
Word description
Resumes a continuation usually reified by
callcc0
.
Notes
This actually resumes the continuation with
f
placed on the data stack.
See also
callcc0
,
callcc1
,
continue-with
,
ifcc
Definition
USING:
kernel
;
IN:
continuations
:
continue
( continuation -- * )
f
swap
continue-with
;