Module assert_count_ge

Module assert_count_ge 

Source
Expand description

Assert a count is greater than or equal to another.

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

§Example

use assertables::*;

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

§Module macros