match_all
Provides the match_all! macro for rust
This macro provides similar functionality to a vanilla match statement but allows for multiple expression blocks to be executed.
Format:
match_all!
value: is the value that is wished to be matched on, this can be any function or variable that reduces to a valueIfNoMatch: the expression after this is executed if none of the other patterns are matched. This branch is optional.pat | pat ...: this is groupings of patterns that will be checked. If any of them match to value then their corresponding expression is executed. After checking a group of patterns then the next group is checked until all groups have been checked. If none match then theIfNoMatchexpression will be executed.
This can be used to set values of a variable but the following must hold:
- The
IfNoMatchblock must be present
Examples:
let value = Some;
match_all!
> Hello
> Howdy
let x = match_all!;