SpecIterEq

Trait SpecIterEq 

Source
trait SpecIterEq<B: Iterator>: Iterator {
    // Required method
    fn spec_iter_eq<F>(self, b: B, f: F) -> bool
       where F: FnMut(Self::Item, <B as Iterator>::Item) -> ControlFlow<()>;
}

Required Methods§

Source

fn spec_iter_eq<F>(self, b: B, f: F) -> bool
where F: FnMut(Self::Item, <B as Iterator>::Item) -> ControlFlow<()>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§