Trait JoinStr

Source
pub trait JoinStr: Iterator {
    // Provided method
    fn join_str(self, s: &str) -> String
       where Self: Sized,
             Self::Item: ToString { ... }
}
Expand description

join_strを提供する。

Provided Methods§

Source

fn join_str(self, s: &str) -> String
where Self: Sized, Self::Item: ToString,

要素をStringに変換して、要素間にsを挿入して、結合する。

Implementors§

Source§

impl<I> JoinStr for I
where I: Iterator + ?Sized,