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
Would sure be nice to have rayon::iter::FromParallelIterator implemented for ArrayVec from the arrayvec crate. Would the implementation belong in Rayon under a feature gate, or somewhere else? What might make it hard? Should I just try to put together a pull request?
The text was updated successfully, but these errors were encountered:
Usually our trait implementations get added as an optional "rayon" feature of the other crate, especially because efficient implementations may need to access private details of the type.
Would sure be nice to have
rayon::iter::FromParallelIterator
implemented forArrayVec
from thearrayvec
crate. Would the implementation belong in Rayon under a feature gate, or somewhere else? What might make it hard? Should I just try to put together a pull request?The text was updated successfully, but these errors were encountered: