Factor Documentation
|
Home
|
Glossary
|
Search
factorcode.org
catchstack ( -- catchstack )
Factor documentation
>
Factor handbook
>
The language
>
Continuations
>
Continuation implementation details
Prev:
set-namestack ( namestack -- )
Next:
set-catchstack ( catchstack -- )
Vocabulary
continuations.private
Inputs and outputs
catchstack
a vector of continuations
Word description
Outputs a copy of the current catchstack.
Definition
USING:
kernel
;
IN:
continuations.private
:
catchstack
( -- catchstack )
catchstack*
clone
;
inline