Skip to content

Instantly share code, notes, and snippets.

@yuga
Created May 11, 2015 23:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuga/533262f1348af9a1a549 to your computer and use it in GitHub Desktop.
Save yuga/533262f1348af9a1a549 to your computer and use it in GitHub Desktop.
module Free where
import Control.Applicative (Applicative(..))
data Free f a = Pure a | Free (f (Free f a))
instance Functor f => Functor (Free f) where
fmap f (Pure a) = Pure (f a)
fmap f (Free fa) = Free (fmap (fmap f) fa)
instance Functor f => Applicative (Free f) where
pure = Pure
Pure f <*> Pure a = Pure (f a)
Pure f <*> Free ma = Free (fmap (fmap f) ma)
--Free mf <*> Pure a = Free (fmap (fmap (\f -> f a)) mf)
Free mf <*> a = Free (fmap (<*> a) mf)
instance Functor f => Monad (Free f) where
return = Pure
Pure a >>= f = f a
Free m >>= f = Free (fmap (>>= f) m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment