macro_rules! vortex_ensure {
($cond:expr) => { ... };
($cond:expr, $($tt:tt)*) => { ... };
}Expand description
A macro that mirrors assert! but instead of panicking on a failed condition,
it will immediately return an erroneous VortexResult to the calling context.