Macro assert_ne_approx
macro_rules! assert_ne_approx {
($actual:expr_2021, $expected:expr_2021, fn = $func:expr_2021 $(, $($t:tt)* )?) => { ... };
($actual:expr_2021, $expected:expr_2021 $(, $($t:tt)* )?) => { ... };
}Expand description
Asserts that two values are not approximately equal, using the provided
func for equality checking.