Macro more_asserts::assert_le [] [src]

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

Panics if the first expression is not less than or equal to the second. Requires that the types be comparable with <=.

Prints the values out on panic.