Module assertables::assert_not_starts_with

source ·
Expand description

Assert an expression (such as a string) does not start with an expression (such as a string).

Pseudocode:
¬ a.starts_with(b)

§Example

let a = "alfa";
let b = "fa";
assert_not_starts_with!(a, b);

§Module macros