The continuation-passing tag has no wiki summary.
1
vote
1answer
47 views
Changing a function into CPS style
We were asked to write a procedure that when given a list it will replace the first occurrence of a given element and only the first, but the catch is to write in CPS style.
We were able to write in ...
5
votes
1answer
206 views
Why does null.asInstanceOf[<some CPS annotated type>] fail?
Is there any logical reason why null.asInstanceOf[<some CPS annotated type>] fails to compile?
For context, see this github issue thread.
11
votes
1answer
343 views
What's the difference between a continuation and a callback? [closed]
I've been browsing all over the web in search of enlightenment about continuations, and it's mind boggling how the simplest of explanations can so utterly confound a JavaScript programmer like myself. ...
1
vote
2answers
511 views
Non-blocking IO with Haskell [duplicate]
Possible Duplicate:
What is the Haskell response to Node.js?
How can I watch multiple files/socket to become readable/writable in Haskell?
Is it possible to write a Haskell program that ...
0
votes
1answer
75 views
how to transform let expression to cps?
I want to know how to transform a let expression to continuation passing style like this:
(let ([a (lambda (x) (+ 1 x))]) (a 4))
Please show me some examples.Thanks.
2
votes
2answers
184 views
JavaScript: Direct code vs CPS styled generated code performance comparison
In my application i am generating JavaScript code which is following CPS style. I am 'not' using any 'continuations' as such. No async behavior, No pause and resume, and No callbacks.
Just that the ...
2
votes
1answer
130 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 ...
6
votes
1answer
1k 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 ...
3
votes
1answer
567 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 ...
4
votes
1answer
401 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 ...
0
votes
1answer
104 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)
13
votes
3answers
1k 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
454 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 ...
1
vote
4answers
273 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.
...