[−][src]Macro totems::assert_ge
Asserts (left >= right).
Parameters
leftThe left operand of the comparison.rightThe right operand of the comparison.
Dependencies
leftandrightmust be at least PartialOrd
Example
use totems::assert_ge; let x = 5; let y = 4; assert_ge!(x, y)
Example Error Messages
thread 'inequalities::ge::incorrect' panicked at 'assertion failed: `(left >= right)`
left: `5`,
right: `6`', src/inequalities.rs:320:9