Skip to content

Instantly share code, notes, and snippets.

@Jacoby6000
Last active October 20, 2017 22:58
Show Gist options
  • Save Jacoby6000/610c8fb39ff972b1728b043ad0861985 to your computer and use it in GitHub Desktop.
Save Jacoby6000/610c8fb39ff972b1728b043ad0861985 to your computer and use it in GitHub Desktop.
(=<<) f (OptionalT fMaybeA) =
OptionalT (
fMaybeA >>= \o ->
case o of
Full x -> runOptionalT (f x)
Empty -> pure Empty)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment