pub trait IterUtil: Iterator {
    // Provided methods
    fn join(&mut self, sep: &str) -> String
       where Self::Item: Display { ... }
    fn join_debug(&mut self, sep: &str) -> String
       where Self::Item: Debug { ... }
}
Expand description

イテレータのツール

Provided Methods§

source

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

文字列として結合する

source

fn join_debug(&mut self, sep: &str) -> Stringwhere Self::Item: Debug,

文字列として結合する(デバッグ)

Implementors§

source§

impl<I: Iterator> IterUtil for I