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
The motivation is as follows: I'm getting asynchronously produced values from a channel. For each value, there is some independent, CPU-heavy work to do. I want to maximise the resource use, and do the work in parallel if there is CPU power available and there's values available from the channel.
The types I: Iterator<Item=T> and/or Receiver<T> don't implement the IntoParallelIterator trait. Is there any reason for that?
The text was updated successfully, but these errors were encountered:
The motivation is as follows: I'm getting asynchronously produced values from a channel. For each value, there is some independent, CPU-heavy work to do. I want to maximise the resource use, and do the work in parallel if there is CPU power available and there's values available from the channel.
The types
I: Iterator<Item=T>
and/orReceiver<T>
don't implement theIntoParallelIterator
trait. Is there any reason for that?The text was updated successfully, but these errors were encountered: