pub trait JoinableIterator: Iterator {
// Provided method
fn join(&mut self, sep: &str) -> String
where Self::Item: Display { ... }
}
Expand description
An Iterator
implementation that provides a join method
pub trait JoinableIterator: Iterator {
// Provided method
fn join(&mut self, sep: &str) -> String
where Self::Item: Display { ... }
}
An Iterator
implementation that provides a join method