vote up 3 vote down star
1

Can continuations be said to be monads? Are they a subset of monads or are they simply a way of implementing monads?

Edit: Or maybe I got it wrong and monads is a more abstract concept than continuations? (So I'm really comparing apples to oranges here)

flag

Continuations are everything. Continuations can implement data structures; continuations can implement classes and objects; continuations can implement monads. I'm don't see what this question has to do with Haskell, though, aside from having both continuations and monads... – ephemient Mar 21 at 2:04
Me neither. I didn't add the Haskell tag in the first place and frankly I'm more interested in an explanation in a different context. – troelskn Mar 21 at 14:52
@troelskn: I'd agree with your edit; continuations are a different beast than monads. It's a bit like asking whether wooden planks are a house. They could be, if put together as such. But they could also be lots of other things. – John Feminella Mar 21 at 16:46
Another way of saying this is: the continuation monad and continuations are equivalent. There are monads that are less general than continuations (identity monad, Maybe monad) so monads are a "more abstract" concept. – Jared Updike Jul 29 at 15:21

4 Answers

vote up 5 vote down check

Briefly, since the 'bind' of a monad takes an effective continuation (a lambda of the 'rest of the computation') as an argument, monads are continuations in that sense. On the flip side, continuation-passing style can be effectively implemented in a non-CPS language using monadic syntax sugars, as suggested by a number of misc links below.

From the 'all about monads' tutorial in Haskell:

http://www.haskell.org/all_about_monads/html/contmonad.html

An F# continuation monad, used to implement 'break' and 'continue' for for-style-loops

http://cs.hubfs.net/forums/thread/9311.aspx

And example of applying a continuation monad to a problem in F#:

http://lorgonblog.spaces.live.com/blog/cns!701679AD17B6D310!256.entry

link|flag
vote up 4 vote down

Not only are continuations monads, but they are a sort of universal monad, in the sense that if you have continuations and state, you can simulate any functional monad. This impressive but highly technical result comes from the impressive and highly technical mind of Andrzej Filinski, who wrote in 1994 or thereabouts:

We show that any monad whose unit and extension operations are expressible as purely functional terms can be embedded in a call-by-value language with “composable continuations”.

link|flag
vote up 3 vote down

They can be, although they don't need to be. I'd reverse your question a little bit and say instead that monads are a way of implementing continuations. But you can implement continuations in many ways -- you can do a modest but constrained facsimile of CPS in C# without too much effort, for example. Have a look at The Continuation Monad from the Haskell site for a very thorough treatment.

link|flag
I got a bit excited, but that's not CPS in C#. It's a utility function which takes a function and returns a the value returned by that function to the caller. Nothing to do with CPS. – Pete Kirkham Mar 20 at 13:40
Oops, wrong link. Fixed. As noted, this is only an approximation to CPS, not real CPS (I don't think that's possible in C#, but I'd have to think about it a little more). – John Feminella Mar 20 at 14:06
vote up 1 vote down

A very nice article on that topic: http://blog.sigfpe.com/2008/12/mother-of-all-monads.html

link|flag
+1 for citing sigfpe's blog. What a beautiful treasure trove of awesomeness. The author manages to explain category theory and other far-off concepts in a detailed, enlightening, yet down to earth way. The smartest people, in my book, are the best teachers. – Jared Updike Jul 29 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.