|
D.15.18.3 parallelWaitAll
Procedure from library parallel.lib (see parallel_lib).
- Usage:
- parallelWaitAll(commands, arguments[, timeout]); commands list or
string, arguments list, timeout int
- Return:
- a list, containing the results of commands[i] applied to
arguments[i], i = 1, ..., size(arguments).
The command parallelWaitAll(commands, arguments[, timeout]) is
synonymous to @code{parallelWaitN(commands, arguments,
size(arguments)[, timeout])}. See parallelWaitN for details on
optional arguments and other remarks.
- Note:
- As a shortcut,
commands can be a string. This is synonymous to
providing a list of size(arguments) copies of this string.
Example:
See also:
parallelWaitFirst;
parallelWaitN;
tasks_lib.
|