Skip to content

Instantly share code, notes, and snippets.

@useronym
Last active May 3, 2019 06:58
Show Gist options
  • Save useronym/bb8caf725ce75ea7fdf17b1371cd388c to your computer and use it in GitHub Desktop.
Save useronym/bb8caf725ce75ea7fdf17b1371cd388c to your computer and use it in GitHub Desktop.
case (f, g, h) of
(Just a, _, _) -> doActionA a
(_, Just b, _) -> doActionB b
(_, _, Just c) -> doActionC c
Nothing -> error ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment