macro_rules! debug_assert_ni {
( $( $arg : tt )+ ) => { ... };
}Expand description
Macro asserts that two expressions are not identical to each other. Unlike std::assert_eq it is removed from a release build.
macro_rules! debug_assert_ni {
( $( $arg : tt )+ ) => { ... };
}Macro asserts that two expressions are not identical to each other. Unlike std::assert_eq it is removed from a release build.