macro_rules! warrant {
($condition:expr, else $else_block:block) => { ... };
}
Expand description
Checks a condition.
If the condition is not satisfied, the block of code following the else
keyword is executed.
macro_rules! warrant {
($condition:expr, else $else_block:block) => { ... };
}
Checks a condition.
If the condition is not satisfied, the block of code following the else
keyword is executed.