Skip to content

Instantly share code, notes, and snippets.

@hdgarrood
Created July 7, 2015 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hdgarrood/f9c351a218ec5e911c6a to your computer and use it in GitHub Desktop.
Save hdgarrood/f9c351a218ec5e911c6a to your computer and use it in GitHub Desktop.
> let f c = if c then Nothing else Just false
> let x = Just true
> let y = Just false
> (x <|> y) >>= f
Nothing
> (x >>= f) <|> (y >>= f)
Just (false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment