union icon indicating copy to clipboard operation
union copied to clipboard

Pattern synonyms

Open int-index opened this issue 7 years ago • 1 comments

U1, U2, U3, U4, ... U16 for Union OU1, OU2, OU3, OU4, ... OU16 for OpenUnion

Generate via TH, taking the amount as a parameter.

int-index avatar Jan 27 '18 10:01 int-index

Type-indexed patterns:

f = OpenUnion '[Integer, Bool, Char] -> r
f = \case
  OU (a :: Integer) -> ...
  OU (b :: Bool) -> ...
  OU (c :: Char) -> ...

int-index avatar Jan 27 '18 10:01 int-index