Macro more_asserts::assert_lt [] [src]

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

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

Prints the values out on panic.