Macro more_asserts::assert_gt [] [src]

macro_rules! assert_gt {
    ($left:expr, $right:expr) => { ... };
}

Panics if the first expression is not strictly greater than the second. Requires that the types be comparable with >.

Prints the values out on panic.