macro_rules! debug_assert_op_expr {
    ($left:expr, $op:tt, $right:expr) => { ... };
}
Expand description

Assert that a binary expression of 2 expressions returns true.

This macro is the debug-only version of assert_op. It acts like assert_op_expr in debug mode, but does nothing in release mode.