Last active
October 20, 2017 22:58
-
-
Save Jacoby6000/610c8fb39ff972b1728b043ad0861985 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(=<<) 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