| 50 | } |
| 51 | |
| 52 | void sample3() |
| 53 | { |
| 54 | auto const x = 4; |
| 55 | auto const y = false; |
| 56 | |
| 57 | std::cout << match(x)( |
| 58 | // clang-format off |
| 59 | pattern | or_(4, 5, 6) | when(expr(y)) = expr("yes"), |
| 60 | pattern | _ = expr("no") |
| 61 | // clang-format on |
| 62 | ) |
| 63 | << std::endl; |
| 64 | } |
| 65 | |
| 66 | int32_t main() |
| 67 | { |