Allow iterable
instead of array
for all()
, race()
and any()
#221
Labels
Milestone
iterable
instead of array
for all()
, race()
and any()
#221
We should support accepting an
iterable
instead of only anarray
forall()
,race()
andany()
. Theiterable
pseudo type is available as of PHP 7.1, so we can take advantage of this for our Promise v3 (see also #149). It supports passing anarray
just like now (see also #35), but also acceptsIterator
s andGenerator
s.(The same type also applies to the
some()
,map()
andreduce()
functions. I've filed #219 to discuss removing these functions for the Promise v3).I'm not currently working on this, but figured it makes sense to report here in order to track this feature request. In case anybody feels like picking this up, any input and PRs would be much appreciated 👍
The text was updated successfully, but these errors were encountered: