Tagged Questions
In computer science and programming, a continuation is an abstract representation of the control state. A continuation reifies an instance of a computational process at a given point in the process's execution. It contains information such as the process's current stack (including all data whose lifetime is within the process e.g. "local variables"), as well the process's point in the computation.
39
votes
3answers
5k views
What are Scala continuations and why use them?
So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't ...
33
votes
4answers
3k views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
26
votes
12answers
2k views
How to implement continuations?
I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, which is presenting a minor problem with implementing continuations. My current solution is ...
24
votes
9answers
1k views
I just don't get continuations!
What are they and what are they good for?
I do not have a CS degree and my background is VB6 -> ASP -> ASP.NET/C#. Can anyone explain it in a clear and concise manner?
23
votes
2answers
2k views
Goto in Haskell: Can anyone explain this seemingly insane effect of continuation monad usage?
From this thread (Control.Monad.Cont fun, 2005), Tomasz Zielonka introduced a function (commented in a clear and nice manner by Thomas Jäger). Tomasz takes the argument (a function) of a callCC body ...
21
votes
2answers
403 views
Why are delimited continuation primitives named “shift” and “reset”?
I think I understand (in general) what shift and reset mean. However I do not understand why they are named so ? What do shift and reset as Delimited Continuation primitives have to do with "shift" ...
20
votes
2answers
751 views
Don't understand the typing of Scala's delimited continuations (A @cpsParam[B,C])
I'm struggling to understand what precisely does it mean when a value has type A @cpsParam[B,C] and what types of this form should I assign to my values when using the delimited continuations ...
19
votes
2answers
3k views
Implementing yield (yield return) using Scala continuations
How might one implement C# yield return using Scala continuations? I'd like to be able to write Scala Iterators in the same style. A stab is in the comments on this Scala news post, but it doesn't ...
19
votes
2answers
934 views
Help understanding Continuations in Scheme
I have been working alongside The Little Schemer to learn Scheme and using PLT-Scheme for my environment.
The Little Schemer has helped me tremendously with recursion (it is straightforward for me ...
18
votes
0answers
517 views
C# first class continuation via C++ interop or some other way?
We have a very high performance multitasking, near real-time C# application. This performance was achieved primarily by implementing cooperative multitasking in-house with a home grown scheduler. ...
18
votes
5answers
1k views
Tutorial to disassemble the Haskell Cont monad?
This is how the Cont monad is defined:
newtype Cont r a = Cont { runCont :: (a -> r) -> r }
instance Monad (Cont r) where
return a = Cont ($ a)
m >>= k = Cont $ \c -> runCont ...
17
votes
1answer
2k views
How do I enable continuations on Scala 2.8 and beyond?
Since version 2.8, Scala includes the continuations plugin, but the details of how to get access to the shift and reset operations changed. Old blog entries and SO answers may still reference the old ...
17
votes
9answers
2k views
What is call/cc?
I've tried several times to grasp the concept of continuations and call/cc. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than ...
17
votes
13answers
2k views
Looking for examples of “real” uses of continuations
I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the Wikipedia article:
(define the-continuation #f)
(define (test)
(let ((i 0))
...
15
votes
2answers
478 views
Uses for Scala continuations
How are people using continuations on a larger and smaller scale in Scala?
Are any parts of the Scala standard library written in CPS?
Are there any major performance penalties in using ...
14
votes
5answers
907 views
call/cc in Lua - Possible?
The Wikipedia article on Continuation says:
"In any language which supports closures, it is possible to write programs in continuation passing style and manually implement call/cc."
Either that is ...
14
votes
5answers
1k views
Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?
Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario:
You have a workflow engine ...
12
votes
1answer
251 views
Did I just write a continuation?
I don't have formal knowledge of continuations, and am wondering if someone can help me verify and understand the code I wrote :).
Problem
The general problem I'm trying to solve is to convert ...
12
votes
2answers
231 views
Why continuation passing style
In "The Scheme Programming Language" by Kent Dybvig (4th edition) section 3.4, he describes very clearly "what" continuation passing style is. For the "why" he gives two reasons:
1) pass more than one ...
12
votes
4answers
433 views
C# 5 Async/Await - is it *concurrent*?
I've been considering the new async stuff in C# 5, and one particular question came up.
I understand that the await keyword is a neat compiler trick/syntactic sugar to implement continuation passing, ...
12
votes
2answers
378 views
Converting Scala @suspendable Method into a Future
suppose I have a sleep function:
def sleep(delay:Int) : Unit @suspendable = {
....
}
is it possible to have a function future that creates an async version of the sleep function that can be ...
12
votes
3answers
588 views
How to split and dispatch an async control-flow using Continuations?
I have an asynchronous control-flow like the following:
ActorA ! DoA(dataA, callback1, callbackOnErrorA)
def callback1() = {
...
ActorB ! DoB(dataB, callback2, callbackOnErrorB)
}
def ...
12
votes
4answers
1k views
Continuations in Java
Is there a good implementation of continuations in Java?
If so, what is the overhead like? The JVM wasn't designed with these sort of things in mind, right? So is this kind of going against the ...
12
votes
4answers
782 views
Is there a fast language that supports portable continuations?
I'm looking for a fast language (ie. a language that can be compiled natively to achieve performance not more than 3 or 4 times slower than C), which supports portable continuations. By this I mean a ...
10
votes
1answer
202 views
Using Scala continuations for non-blocking APIs
I'm trying to use Scala (2.9.0) continuations to build a seemingly blocking API, but that actually is asynchronous. Suppose that you would like to write something like:
if(ask("Continue?")) //Prompts ...
10
votes
1answer
220 views
Does “reset” require “shift” inside the block?
Is it correct that reset requires shift inside the block? I tried it and got the following:
scala> reset {}
error: cannot cps-transform expression (): type arguments [Unit,Unit,Nothing]
do not ...
10
votes
5answers
3k views
Continuations in Clojure
I read somewhere where rich hickey said:
"I think continuations might be neat
in theory, but not in practice"
I am not familiar with clojure.
1. Does clojure have continuations?
2. If no, ...
10
votes
4answers
2k views
Continuations in Ruby
Has anyone ever done work to get Ruby to do continuations (like Seaside on Smalltalk)?
9
votes
1answer
204 views
Continuations and for comprehensions — what's the incompatibility?
I am new to Scala and trying to wrap my head around continuations
I'm trying to reproduce the yield return C# statement.
Following this post, I have written the following code :
package ...
9
votes
1answer
766 views
Using Scala's Delimited Continuations for implicit Monads
I'm playing with some kind of DSL defined by an monadic interface.
Since applying the monad using a bunch of flatMap applications is kind of cumbersome and I find for-comprehension syntactically not ...
9
votes
4answers
298 views
C# - Serialization and the Yield statement
Is it possible to serialize a method containing yield statements (or a class that contains such a method) such that when you rehydrate the class, the internal state of the generated iterator is ...
8
votes
3answers
213 views
Is continuation-style-programming prone to stack overflow
In response to this question about jQuery effects, I thought about using the callback argument to .fadeIn( 500, my_function ).
While in principle, this is a viable idea, I have no clue (and neither ...
8
votes
4answers
620 views
generator/block to iterator/stream conversion
Basically I want to convert this:
def data(block: T => Unit)
to a Stream (dataToStream is a hypothetical function that do this conversion):
val dataStream: Stream[T] = dataToStream(data)
I ...
8
votes
8answers
2k views
Design Pattern Alternative to Coroutines
Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).
I was ...
7
votes
4answers
170 views
call/cc implementation?
I'm trying to find how call/cc is implemented. The best I've found is this Haskell snippet:
callCC f = Cont $ \k -> runCont (f (\a -> Cont $ \_ -> k a)) k
Although this is not as simple as ...
7
votes
1answer
175 views
Play's continuations holding http threads
We have implemented a feature in our web app that updates the GUI in response to new events in the server by using Play's continuations, just like a chat app. After running it for some time in ...
7
votes
2answers
216 views
Haskell implemented without a stack?
from How does a stackless language work?
Haskell (as commonly implemented) does not have a call stack;
evaluation is based on graph reduction.
Really? That's interesting, because while I've never ...
7
votes
1answer
351 views
How to make callCC more dynamic?
I thought the right type for ContT should be
newtype ContT m a = ContT {runContT :: forall r. (a-> m r) -> m r}
and other control operators
shift :: Monad m => (forall r . (a-> ContT m ...
7
votes
2answers
211 views
Escaping from the IO monad inside the Continuation monad
A confusing title for a confusing question! I understand a) monads, b) the IO monad, c) the Cont monad (Control.Monad.Cont), and d) the ContT continuation transformer monad. (And I vaguely understand ...
7
votes
2answers
164 views
How could I implement an early return from outside the body of a method in Scala?
Disclaimer: Before someone says it: yes, I know it's bad style and not encouraged. I'm just doing this to play with Scala and try to learn more about how the type inference system works and how to ...
7
votes
2answers
129 views
Example of nested resets in Scala
This is a question about Scala continuations. Can resets be nested? If they can: what are nested resets useful for ? Is there any example of nested resets?
7
votes
1answer
171 views
“call-cc” patterns in Scala?
I found a good article, about call with current continuation patterns. As I understand, they use Scheme and undelimited continuations. Can the patterns from the article be implemented in Scala? Is ...
7
votes
2answers
195 views
Line continuation for list comprehensions or generator expressions in python
How are you supposed to break up a very long list comprehension?
[something_that_is_pretty_long for something_that_is_pretty_long in somethings_that_are_pretty_long]
I have also seen somewhere that ...
7
votes
1answer
238 views
Implementing Seq[T] for CPS-Classes
Having the following class which is in a CPS-context (@cps[Unit]) how would I implement the Seq-trait?
Do I have to leave the standard traits like Seq aside and just implement map, flatmap and foreach ...
7
votes
5answers
2k views
Are continuations monads?
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 ...
7
votes
5answers
1k views
Python equivalent of continuations with Ruby
What is the Python equivalent of the following code in Ruby?
def loop
cont=nil
for i in 1..4
puts i
callcc {|continuation| cont=continuation} if i==2
end
return cont
end
> c=loop
...
6
votes
1answer
120 views
Formal definition of Scala continuations
There are some questions about what Scala continuations are (here and here). But the answers only try to explain it. So in this question I'm asking for a formal definition of what (Scala's) delimited ...
6
votes
3answers
135 views
how can I implement this monad transformer with a continuation?
motivation. I'm trying to create a monad transformer, with a special instruction f <||> g that means "repeat this entire block containing f <||> g, once with f, the next time with g". This ...
6
votes
2answers
138 views
Are continuations a key feature in Seaside?
I'm trying to get up to speed on Smalltalk / Seaside. According to Wikipedia, "Seaside is a continuation-based web application framework". Coming from a Java background I'm not very familiar with ...
6
votes
2answers
192 views
CPS compiler for coroutine implementation
I used to work on IronLua in my spare time. Lexing and parsing is currently done. I kind of stopped working on it out of frustration since implementing Lua coroutines in .NET without resorting to ...