Macro more_asserts::debug_assert_gt [] [src]

macro_rules! debug_assert_gt {
    ($($arg:tt)+) => { ... };
}

Same as assert_gt! in debug builds or release builds where the -C debug-assertions was provided to the compiler. For all other builds, vanishes without a trace.

Optionally may take an additional message to display on failure, which is formatted using standard format syntax.

Example

#[macro_use]
extern crate more_asserts;

fn main() {
    // These are compiled to nothing if debug_assertions are off!
    debug_assert_gt!(5, 3);
    debug_assert_gt!(5, 3, "With a message");
    debug_assert_gt!(5, 3, "With a formatted message: {}", "oh no");
}