Module lib::assert_count::assert_count_lt

source ·
Expand description

Assert a count is less than another count.

Pseudocode:
a.count() < b.count()

§Example

use assertables::*;

let a = "x".chars();
let b = "xx".chars();
assert_count_lt!(a, b);

§Module macros