match icon indicating copy to clipboard operation
match copied to clipboard

Different ways to write guards

Open yuanchuan opened this issue 7 years ago • 0 comments


// currently supported
match(
  x => 2, when(x => x > 3)
)

// no support
match(
  (x = when(x > 3)) => 2
)

yuanchuan avatar Jan 18 '18 02:01 yuanchuan