Skip to main content

IteratorExt

Trait IteratorExt 

Source
pub trait IteratorExt {
    // Required method
    fn join(self, sep: &str) -> String;
}

Required Methods§

Source

fn join(self, sep: &str) -> String

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: Iterator<Item = impl AsRef<str>>> IteratorExt for T