Function exprz::iter::eq_by[][src]

pub fn eq_by<L, R, F>(lhs: L, rhs: R, eq: F) -> bool where
    L: IntoIterator,
    R: IntoIterator,
    F: FnMut(L::Item, R::Item) -> bool, 

Checks if two iterators are equal pointwise.