call-with-current-continuation (abbreviated as call/cc) is a control operator in functional programming
0
votes
1answer
44 views
The semantic of call/cc and “ensure” in Ruby
As I know so far, Ruby is the only mainstream language that supports both call/cc and try/catch/finally (written as begin/rescue/ensure/end block).
I am not familiar with Ruby, but my intuitive tell ...
6
votes
4answers
165 views
Why does not exist a primitive `call-with-current-continuations` in Common Lisp?
Lately I've been investigating the differences between Scheme and Common Lisp regarding the approach that these two languages have towards continuations.
I've noticed that the Common Lisp approach ...
0
votes
2answers
76 views
Scheme call/cc issue - implementing exit.
I am writing a program that needs to recursively analyze a list of "commands" and "programs" (it is an interpreter of some "robotic language" invented by our professor for a robot living in a maze). ...
2
votes
1answer
65 views
Using call/cc to make a loop. let vs begin
Both of the following code blocks should (in my mind) be infinite loops
This works
(define call/cc call-with-current-continuation)
(define l 0)
(define i 0)
((lambda ()
(call/cc
(lambda (k)
...
0
votes
1answer
91 views
Magic Squares in Scheme
I am still new to Scheme and trying to solve the magic squares via call/cc and the amb operator. Currently, it is printing out:
1 1 1 31 Row 1
16 16 1 1 Row 2
16 1 16 1 Row 3
1 16 16 1 Row 4
I ...
13
votes
1answer
421 views
What's the difference between a continuation and a callback?
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. ...
0
votes
0answers
60 views
call/cc scheme exit and re-enter recursion
Almost working call/cc question!
So I have been working with call/cc trying to get some simple exit and reenter recursive code to work, and I feel quite close, check out the following:
(define return ...
3
votes
1answer
98 views
Scheme: how does a nested call/cc work for a coroutine?
I am looking at the following example for a coroutine from http://community.schemewiki.org/?call-with-current-continuation:
(define (hefty-computation do-other-stuff)
(let loop ((n 5))
...
4
votes
1answer
61 views
Implement a return function
I'm trying to implement a return function in Scheme R6RS. I want something such that:
(lambda ()
(do-some-job-before)
(return some-value)
(do-some-job-after))
executes (do-some-job-before), ...
0
votes
0answers
46 views
Ruby Enumerator using callcc doesn't terminate
I'm having a hard time figuring out why Enumerable#take never terminates given my enumerator:
require 'continuation'
fib = Enumerator.new do |yielder|
c, x, y = callcc {|cc| [cc, 0, 1]}
yielder ...
5
votes
3answers
178 views
Is it possible to use call/cc to implement recursion?
I wonder if it is possible to define a recursive function without calling the function itself in its body but somehow using call/cc instead? Thanks.
18
votes
5answers
2k 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 ...
2
votes
2answers
442 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 ...
3
votes
2answers
191 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 ...
1
vote
1answer
361 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 ...
5
votes
5answers
247 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.
0
votes
1answer
105 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)
1
vote
0answers
232 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 ...
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# ...
6
votes
2answers
917 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. ...
1
vote
1answer
238 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 ...
0
votes
1answer
257 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?
18
votes
5answers
2k 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 ...
3
votes
2answers
908 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?
...
21
votes
4answers
2k views
How does the yin-yang puzzle work?
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) ...
1
vote
1answer
328 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/)
5
votes
4answers
1k 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 ...
19
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 ...
8
votes
7answers
2k 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 ...
2
votes
1answer
692 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 ...
28
votes
9answers
2k 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?
