How might one implement C# yield return using Scala continuations? I'd like to be able to write Scala Iterators in the same style. A stab is in the comments on this Scala news post, but it doesn't work (tried using the Scala 2.8.0 beta). Answers in a related question suggest this is possible, but although I've been playing with delimited continuations for a while, I can't seem to exactly wrap my head around how to do this.
| ||||
|
feedback
|
|
Before we introduce continuations we need to build some infrastructure.
Below is a trampoline that operates on
The trampoline uses an internal loop that turns the sequence of The trampoline can be used to build an iterator directly.
That's pretty horrible to write, so let's use delimited continuations to create our We use the
Now we can rewrite our example.
Much better! Now here's an example from the C# reference page for
| |||||||||
feedback
|
|
I managed to discover a way to do this, after a few more hours of playing around. I thought this was simpler to wrap my head around than all the other solutions I've seen thus far, though I did afterward very much appreciate Rich's and Miles' solutions.
| |||||||||||
feedback
|
foreach, but, at any rate, it would be helpful knowing what the problem is. – Daniel C. Sobral Feb 4 '10 at 20:12