Module assert_len_ge

Module assert_len_ge 

Source
Expand description

Assert a length is greater than or equal to another.

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

§Example

use assertables::*;

let a = "xx";
let b = "x";
assert_len_ge!(a, b);

§Module macros