Created
December 5, 2012 06:14
-
-
Save pchiusano/4212903 to your computer and use it in GitHub Desktop.
Machines are monads
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
data Machine k a where | |
Emit :: a -> Machine k a -> Machine k a | |
Await :: k r -> (r -> Machine k a) -> Machine k a -- ignoring fallback for now, not relevant | |
Halt :: Machine k a | |
(++) :: Machine k a -> Machine k a -> Machine k a | |
Halt ++ m2 = m2 | |
(Emit h t) ++ t = Emit h (t ++ m2) | |
(Await req recv) ++ t = Await req (\res -> recv res ++ t) | |
instance Monad (Machine k) where | |
return a = Emit a Halt | |
Halt >>= f = Halt | |
Emit h t >>= f = f h ++ (t >>= f) | |
Await req recv >>= f = Await req (\res -> recv res >>= f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment