Tagged Questions
call-with-current-continuation (abbreviated as call/cc) is a control operator in functional programming
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?
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 ...
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 ...
11
votes
2answers
634 views
How the yin-yang puzzle works?
I'm trying to grasp the semantics of call/cc in Scheme, and the Wikipedia page on continuations shows the yin-yang puzzle as an example:
(let* ((yin
((lambda (cc) (display #\@) cc) ...
8
votes
3answers
658 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# ...
8
votes
7answers
1k views
Java: using a RuntimeException to escape from a Visitor
I am being powerfully tempted to use an unchecked exception as a short-circuit control-flow construct in a Java program. I hope somebody here can advise me on a better, cleaner way to handle this ...
7
votes
4answers
172 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 ...
5
votes
4answers
777 views
Specifics of call/cc
This is related to http://stackoverflow.com/questions/612761/what-is-call-cc, but I didn't want to hijack this question for my own purposes, and some of its arguments like the analogy to ...
3
votes
1answer
138 views
Can “if” be implemented using “call/cc”?
I've been told that "call/cc" can be used to implement arbitrary control flow constructs so I'm trying to implement all such constructs using "call/cc" but I'm having trouble. Assuming I didn't have ...
3
votes
3answers
154 views
I can't seem to wrap my mind around call/cc in Scheme
Does anyone have a good guide as to how it works? Something with visual aids would be nice, every guide I've come across all seem to say the same thing I need a fresh take on it.
3
votes
2answers
436 views
Can call-with-current-continuation be implemented only with lambdas and closures?
Does anyone know if call/cc can be implemented with just lambdas and closures?
It seems that call/cc interrupts the program's flow (like an exception) but lambdas and closures can't do that. ...
3
votes
2answers
462 views
Continuation (call/cc) in Scheme
I need to understand Continuations in Scheme for my upcoming exams and I have no idea about continuations at all. Can anyone please suggest me sources of how to go about learning continuations?
...
2
votes
1answer
73 views
call/CC with closures
Wikipedia mentions that "In any language which supports closures and proper tail calls, it is possible to write programs in continuation-passing style and manually implement call/cc."
How would one ...
2
votes
1answer
569 views
Working with Seaside continuations
How do I get a BlockClosure in Squeak (I want to use BlockClosure>>callCC)?
When I write [#foo] that is a BlockContext, what's the deal?
Update: I have worked out that BlockClosure is a thing mainly ...
1
vote
2answers
191 views
Continuations: can I serialize the continuation in an F# async workflow or C# async function?
I want a serializable continuation so I can pickle async workflows to disk while waiting for new events. When the async workflow is waiting on a let!, it would be saved away along with a record of ...
1
vote
0answers
168 views
Scheme continuation restarting in weird place
UPDATE:
So the issue seems to be with the generator, and not necessarily with the next-token and lookahead functions. I added some display calls around where the set!s were happening, and found that ...
1
vote
1answer
220 views
How to make just part of a macro hygienic
I'd like to have a version of lambda, called lambda-r, from within which you can return. An example:
(+ ((lambda-r ()
(return 1)
2)) 5)
This would give the value 6. Although you might ...
1
vote
1answer
211 views
Is it possible to do a call-cc in go-language? (go-lang.org)
Is it possible to do a call-cc (http://en.wikipedia.org/wiki/Call-with-current-continuation) in Google's new Language Go? (http://golang.org/)
0
votes
1answer
174 views
Coroutines in Scheme (R5RS)
So I first came across the concept of coroutines in lua and lua's implementation was more or less understandable.. I'm learning scheme now and I understand that the same functionality is implemented ...
0
votes
1answer
72 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)
0
votes
1answer
178 views
How does this callcc example work?
(callcc (fun k -> k 7)) + 3
(callcc (fun k -> 7)) + 3
What do each of these evaluate to and why?