We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think it makes sense to support yielding arrays as implicit all combinator, especially with the changes in PHP 7.1 allowing [] for restructuring.
[]
<?php function coroutine() { [$a, $b, $c] = yield [ asyncOperation1(), asyncOperation2(), asyncOperation3(), ]; };
The text was updated successfully, but these errors were encountered:
Merge pull request #68 from async-interop/driver-registry
1c30c34
Driver registry
Fix DummyDriver
ae441eb
Conflict due to merge of #68
Implement yielding arrays as implicit all operator, fixes #68
e8ea4e2
Ad.: Whenever we implement await in PHP, I'd like to see await accepting these arrays too.
Sorry, something went wrong.
No branches or pull requests
I think it makes sense to support yielding arrays as implicit all combinator, especially with the changes in PHP 7.1 allowing
[]
for restructuring.The text was updated successfully, but these errors were encountered: