The |
operator can be used anywhere within patterns to describe multiple accepted patterns. If there is a captured variable in an or-pattern, it must appear in both its sub-patterns.
var match = switch(7) {
case 4 | 1: "0";
case 6 | 7: "1";
case _: "2";
}