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
This would be useful in cases where it's not possible to iterate over a value borrowed from a SmallVec, e.g.
let output = input
.par_chunks(4).map(SmallVec::from_slice)// the lifetime of this SmallVec is less than the iterator itself.map(do_something).flatten()// this won't work since SmallVec itself doesn't implement `into_par_iter`.collect();
Or plans to support this feature?
The text was updated successfully, but these errors were encountered: