Module assert_iter_gt

Module assert_iter_gt 

Source
Expand description

Assert an iter is greater than another.

Pseudocode:
(collection1 into iter) > (collection2 into iter)

§Example

use assertables::*;

let a = [3, 4];
let b = [1, 2];
assert_iter_gt!(&a, &b);

This implementation uses ::std::iter::Iterator.

§Module macros