macro_rules! assert_null {
($actual:expr) => { ... };
($actual:expr, $msg:expr) => { ... };
}Expand description
Asserts that the pointer is null and short-circuits on failure.
macro_rules! assert_null {
($actual:expr) => { ... };
($actual:expr, $msg:expr) => { ... };
}Asserts that the pointer is null and short-circuits on failure.