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