Created
March 7, 2019 13:39
-
-
Save hadronized/24ef88910402867b0176156df4204679 to your computer and use it in GitHub Desktop.
This file contains 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
-- Why not this implementation? | |
selectM :: (Monad f) => f (Either a b) -> f (a -> b) -> f b | |
selectM x y = do | |
e <- x | |
case e of | |
Left a -> fmap ($a) y | |
Right b -> b <$ y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment