mirror of
https://github.com/danog/parallel-functions.git
synced 2024-11-26 20:34:49 +01:00
9 lines
288 B
PHP
9 lines
288 B
PHP
<?php
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use function Amp\ParallelFunctions\parallelMap;
|
|
use function Amp\Promise\wait;
|
|
|
|
// We have seen that the order can vary in the previous example, values returned have a deterministic order.
|
|
var_dump(wait(parallelMap([1, 2, 3], 'abs'))); |