Last active
December 10, 2015 12:58
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
instance Monad ((->) r) where | |
return = const | |
{-Note: | |
(>>=) :: (r -> a) -> (a -> (r -> b)) -> (r -> b) | |
f :: (r -> a) | |
g :: (a -> (r -> b)) | |
-} | |
f >>= g = \r -> g (f r) r | |
-- using >>= and lambda functions | |
mean' = (fromIntegral . length) >>= \l -> sum >>= \s -> return $ s / l | |
-- translation using do notation | |
mean = do | |
l <- (fromIntegral . length) | |
s <- sum | |
return $ s / l | |
-- these are equivalent | |
ans = mean [1, 2, 3, 9, 2] -- 3.4 | |
ans'= mean' [1, 2, 3, 9, 2] -- 3.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment