The delimited-continuations tag has no wiki summary.
2
votes
1answer
98 views
Inconsistent behavior in Scala CPS framework
I'm trying to build a coroutine framework to enable batch data fetching by stepping through each data-dependent function in parallel. Here is what I have so far: http://pastie.org/7147798
This ...
1
vote
3answers
74 views
What type parameters should I use to make List.map work with delimited continuations?
I'm basically following the example given at the Scala API page for delimited continuations. The code below works fine:
import scala.util.continuations._
import scala.collection.mutable.HashMap
val ...
5
votes
1answer
128 views
Understanding the API of multi-prompt delimited continuations
An API for multi-prompt delimited continuations is described in the paper Delimited Control in OCaml, Abstractly and Concretely System Description.
My question concerns the type of push_subcont : ...
1
vote
2answers
433 views
Scala: Delimited Continuations Explained - Not
Interested in the concept of continuation, I started reading wikis, posts, and came to this "simple" example:
reset {
...
shift { k: (Int=>Int) => // the continuation k will be the '_ + ...
17
votes
3answers
666 views
Is anyone using delimited continuations to do web development in Haskell?
Is anyone using delimited continuations for Haskell development, specifically web development? I find the topic fascinating I need something more accessible than what I've been studying.
Here are the ...
6
votes
1answer
818 views
Scala delimited continuations error at runtime
Scala newbie here, I just downloaded Eclipse 3.6.2 and Scala IDE 2.0.0-beta4 (with Scala 2.9.0.final). I create a new Scala project to try delimited continuations:
package delimCCTests
import ...