Function equal
fn equal<I, J>(a: I, b: J) -> bool
where
I: IntoIterator,
J: IntoIterator,
<I as >::Item: PartialEq<<J as >::Item>
Return true if both iterables produce equal sequences
(elements pairwise equal and sequences of the same length),
false otherwise.
IntoIterator enabled version of Iterator::eq.
assert!;
assert!;