You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's currently not easily possible to create a parallel iterator from an ArrayVec<T, C> that yields owned T values.
I think this would be a very neat feature because it makes a lot of sense to collect into an ArrayVec after filtering some iterator, so rayon knows how many items it has to process.
There is already an implementation in #164 that just needs to be updated to the latest arrayvec API. I'd be happy to do that if there is interest in merging it.
There is a similar request for more rayon support in the form of FromParallelIterator
The text was updated successfully, but these errors were encountered:
It's currently not easily possible to create a parallel iterator from an
ArrayVec<T, C>
that yields ownedT
values.I think this would be a very neat feature because it makes a lot of sense to collect into an ArrayVec after filtering some iterator, so rayon knows how many items it has to process.
There is already an implementation in #164 that just needs to be updated to the latest arrayvec API. I'd be happy to do that if there is interest in merging it.
There is a similar request for more rayon support in the form of FromParallelIterator
The text was updated successfully, but these errors were encountered: