Conjunctions
A conjunction of patterns requires all its constituent patterns to match its concepts. It is most commonly encountered as the body of a match clause.
Syntax
A conjunction is represented by a sequence of patterns, each terminated by a semicolon.
<pattern>; <pattern>; [ <pattern>; ... ]
Optionally, the conjunction may be enclosed in braces. In that case, like any pattern, the conjunction is also terminated by a semicolon.
{ <pattern>; <pattern>; [ <pattern>; ... ] };