[][src]Macro chek::debug_equal

macro_rules! debug_equal {
    ($left:expr, $right:expr $(,)?) => { ... };
    ($left:expr, $right:expr, $($msg_args:tt)+) => { ... };
}

Same as chek::equal! 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

// These are compiled to nothing if debug_assertions are off!
chek::debug_equal!(4, 4);
chek::debug_equal!(4, 4, "With a message");
chek::debug_equal!(4, 4, "With a formatted message: {}", "oh no");