ordo icon indicating copy to clipboard operation
ordo copied to clipboard

Add or~ish pattern matching in record

Open FrankBro opened this issue 5 years ago • 0 comments

Instead of

match x with
| { case = CaseA }
| { case = CaseC } -> 0

Something like

match x with
| { case = CaseA | CaseC } -> 0

FrankBro avatar Mar 11 '19 17:03 FrankBro