macro_rules! assert_gt {
    ($left:expr, $right:expr) => { ... };
    ($left:expr, $right:expr, ) => { ... };
    ($left:expr, $right:expr, $($msg_args:tt)+) => { ... };
}
Expand description

Panics if the first expression is not strictly greater than the second.

Requires that the values implement Debug and PartialOrd.

On failure, panics and prints the values out in a manner similar to prelude’s assert_eq!.

Example

use more_asserts as ma;

ma::assert_gt!(5, 3);
ma::assert_gt!(5, 3, "With a message");
ma::assert_gt!(5, 3, "With a formatted message: {}", "oh no");