Future Result (Expression) — skLambda

Addon: skLambda · Category: Expression · Since: 1.3.0

Syntax

[the] result[s] of %futures%

Description

The resolved value(s) of one or more futures, or nothing for futures that aren't done yet (or that failed). Read it after a `wait for`, when the future is guaranteed resolved.

Examples

wait for {_f} for at most 5 seconds:
	set {_value} to result of {_f}
set {_all::*} to results of {_futures::*}

View source