Trait IteratorExt

Source
pub trait IteratorExt {
    // Required method
    fn fuze(self) -> Fuze<Self> 
       where Self: Sized;
}
Expand description

An extension trait that adds the fuze method to iterators

Required Methods§

Source

fn fuze(self) -> Fuze<Self>
where Self: Sized,

Converts self into a Fuze.

Implementors§