[][src]Trait unchained::Unchained

pub trait Unchained where
    Self: Iterator + Sized,
    Self::Item: Send + 'static, 
{ fn unchained_for_each<F>(self, f: F)
    where
        F: FnMut(Self::Item) + Sized + Send + Sync + Clone + 'static
, { ... } }

Main trait

Provided methods

fn unchained_for_each<F>(self, f: F) where
    F: FnMut(Self::Item) + Sized + Send + Sync + Clone + 'static, 

apply the provided function to each item in the iterator using a thread per item

Loading content...

Implementors

impl<I: Iterator> Unchained for I where
    I::Item: Send + 'static, 
[src]

Loading content...