Created
June 7, 2016 23:20
-
-
Save Sam-Serpoosh/5eb2bf5d3e1d095645e0412e941e9974 to your computer and use it in GitHub Desktop.
Implementation of Functor and Applicative Functor for a Compose type.
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
{-# LANGUAGE InstanceSigs #-} | |
newtype Compose f g a = Compose { getCompose :: f (g a) } | |
instance (Functor f, Functor g) => Functor (Compose f g) where | |
fmap :: (a -> b) -> Compose f g a -> Compose f g b | |
fmap f (Compose fga) = Compose $ fmap (fmap f) fga | |
instance (Applicative f, Applicative g) => Applicative (Compose f g) where | |
pure :: a -> Compose f g a | |
pure x = Compose (pure (pure x)) | |
(<*>) :: Compose f g (a -> b) -> Compose f g a -> Compose f g b | |
(<*>) (Compose fgh) (Compose fga) = Compose $ (<*>) <$> fgh <*> fga | |
main :: IO () | |
main = do | |
putStrLn $ show $ getCompose $ fmap (+1) (Compose [Just 10]) -- [Just 11] | |
putStrLn $ show $ getCompose $ Compose [Just (*2)] <*> Compose [Just 10] -- [Just 20] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment