continue-with ( obj continuation -- * )
Factor handbook » The language » Continuations

Prev:continue ( continuation -- * )
Next:attempt-all ( ... seq quot: ( ... elt -- ... obj ) -- ... obj )


Vocabulary
continuations

Inputs
objan object to pass to the continuation's execution context
continuationa continuation


Outputs
None

Word description
Resumes a continuation reified by callcc1. The object will be placed on the data stack when the continuation resumes.

See also
callcc0, continue, callcc1, ifcc

Definition