Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
681 views

How could the new async feature in c# 5.0 be implemented with call/cc?

I've been following the new announcement regarding the new async feature that will be in c# 5.0. I have a basic understanding of continuation passing style and of the transformation the new c# ...
5
votes
1answer
472 views

Real-world usage of Lua co-routines/continuation serialization to simplify async logic?

The Pluto library for Lua claims to be able to serialize Lua co-routines. I interpret this as meaning 'serializeable continuations', which is an important feature for making asyncronous programming ...
5
votes
1answer
292 views

Is it possible to implement coroutines using only LISP primitives?

First, I'm a LISP newbie. What I want to get is a cooperative micro-threading feature. And this can be gained with coroutine. As I know, Scheme supports coroutines via continuations. However, not ...
4
votes
1answer
220 views

Continuation-Passing Style in Scheme?

I ran into this code on Wikipedia: (define (pyth x y k) (* x x (lambda (x2) (* y y (lambda (y2) (+ x2 y2 (lambda (x2py2) (sqrt x2py2 k)))))))) The article ...
3
votes
1answer
330 views

Continuation passing style - function composition

I'm learning about CPS with Racket, and I've managed to write up these functions: ;lift a regular single-arg function into CPS (define (lift/k f) (lambda (x k) (k (f x)))) ;compose two CPS ...
1
vote
1answer
36 views

How to write analyzer/evaluator functions like `eval-if` in CPS form?

I'm trying to write a toy python Scheme interpreter based on the meta-circular evaluator in SICP. Since python only supports a call stack of limited depth, I have to eliminate the tail calls. I read ...
1
vote
4answers
195 views

Is MapReduce one form of Continuation-Passing Style (CPS)?

As the title says. I was reading Yet Another Language Geek: Continuation-Passing Style and I was sort of wondering if MapReduce can be categorized as one form of Continuation-Passing Style aka CPS. ...
0
votes
1answer
73 views

Is there macros for rewrite CPS?

For example I have two async methods (get-a 10 (lambda (a) (get-b a (lambda (b) (display b))) but I want to write something similar to (define (a (get-a 10))) (define (b (get-b a))) (display b)