macro_rules! ensure_eq {
    ($l:expr, $r:expr) => { ... };
    ($l:expr, $r:expr, $arg:expr) => { ... };
}
Expand description

Variants of ensure for ease of use in certain contexts.

Ensure the first two arguments are equal, using bail otherwise.