Back in the day, I thought I understood call/cc
. These days I'm seeing a lot more references to "delimited" continuation operators, which seem to come in pairs like shift
/reset
, prompt
/control
, and sometimes more exotic ones. But I haven't seen a clear explanation anywhere of the basics, so
- What do they do?
- What are they for?
- What might make one set of operators better for a particular language/context/purpose than another?
I have read a few articles and I can explain the idea. So I do not know how to implement it and how to use it in practical way, but I understood the main idea.
Suppose you have a call like
and
g
captures the continuation.In scheme, if you call
call/cc
withing
, it will copy all the execution stack starting from the top-level (starting from the point wheref
was invoked) -- in case you have many expressions at the top level each one will have its own stacklet and invoking the saved continuation will stop at the top level (so, in the above expression, it will stop after f and at that point it has the value off
).If you want the continuation to be captured from inside
g
up to the exit point ofh
, and each invocation of the continuation to return a value to f it is enough to capture the stack starting from the point of invocation ofh
, not the full stacklet of the invocation off
, so you want to tell the system that calling a call/cc-like function not to duplicate the rest of computation from the top level, but from a given point, and return each time a value at that point:In this case, you instrument the system, something like:
and call the
reset
insideg
, in the place where you would need to capture the continuation.Delimited continuations can be simulated by undelimited continuations, but I think it is more practical to be able to use delimited, in some cases. So you cannot do it in scheme in a practical way of duplicating the stack only in the region of interest, it obliges you to copy a full stacklet (I say "stacklet" instead of stack, as the real stack is bigger, and the outside chained stacklets represent the continuation of the initialization code that is executed when you quit your code).
These are a few ideas that I glaned from the papers I have read. I am also interested to hear a more detailed answer.