materially
A macro for material implication.
a => b ("a implies b") means !a || b.
Examples
use implies as i;
assert!;
assert!;
assert!;
assert!;
// Implication is right-associative
assert!;
// let-chains style syntax is also supported
assert!;