[][src]Macro chek::not_equal

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

Panics if the first expression is not strictly not_equal than the second.

Requires that the values implement PartialEq and Debug.

Note: is also aliased as chek::ne!. A debug-only version is available as chek::debug_not_equal!.

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

Example

chek::not_equal!(4, 1);
chek::not_equal!(4, 5, "With a message");
chek::not_equal!(4, 2, "With a formatted message: {}", "oh no");