Module assert_in_range

Source
Expand description

Assert an item is in a range.

Pseudocode:
a is in range

§Example

use assertables::*;

let a = 1;
let b = 0..2;
assert_in_range!(a, b);

§Module macros