tget ( key -- value )
Factor documentation > Factor handbook > The language > Co-operative threads > Thread-local state and variables
Prev:tnamespace ( -- assoc )
Next:tset ( value key -- )


Vocabulary
threads

Inputs and outputs
keyan object
valuean object


Word description
Outputs the value of a thread-local variable.

Definition
USING: assocs ;

IN: threads

: tget ( key -- value ) tnamespace at ;