bshift ( r quot -- )
Partial continuations

Prev:breset ( quot -- )


Vocabulary
partial-continuations

Inputs
rthe breset in scope
quota quotation with stack effect ( pcc -- v )


Outputs
None

Word description
Calls the quotation with the partial continuation on the stack. The quotation should have stack effect ( pcc -- v ). The partial continuation can be called with call and has stack effect ( a -- b ).

Notes
It is important to note that even if the quotation discards items on the stack, the stack will be restored to the way it was before it is called (which is true of continuation usage in general).

Definition