future ( quot -- future )
Futures

Next:?future ( future -- value )


Vocabulary
concurrency.futures

Inputs
quota quotation with stack effect ( -- value )


Outputs
futurea future


Word description
Creates a deferred computation.

The quotation begins with an empty data stack, an empty catch stack, and a name stack containing the global namespace only. This means that the only way to pass data to the quotation is to partially apply the data, for example using curry or compose.

Definition