sum-types
sum-types copied to clipboard
Match multiple sums together
The equivalent of matching tuples in Haskell:
case (x, y) of
(A, B) -> etc
otherwise -> etc
Potentially relevant/blocker: #15