Skip to main content

IteratorExtensions

Trait IteratorExtensions 

Source
pub trait IteratorExtensions: Iterator {
    // Provided method
    fn join(&mut self, sep: &str) -> String
       where Self::Item: Display { ... }
}

Provided Methods§

Source

fn join(&mut self, sep: &str) -> String
where Self::Item: Display,

Implementors§

Source§

impl<T> IteratorExtensions for T
where T: Iterator,