So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't understand what its useful for or how it works. I've seen that 'its good for async I/O' but I haven't been able to find out why. Some of the more popular links on the subject are these:
http://www.nabble.com/Delimited-continuations-and-Scala-td22630026.html
http://blog.richdougherty.com/2009/03/goto-in-scala.html
http://www.scala-lang.org/node/2096
http://dcsobral.blogspot.com/2009/07/delimited-continuations-explained-in.html
and this question on StackOverflow:
Unfortunately, none of these references try to define what continuations are for or what the shift/reset functions are supposed to do and I haven't found any references that do. I haven't been able to guess how any of the examples in the linked articles work (or what they do) so one way to help me out could be to go line-by-line through one of those samples. Even this simple one from the 3rd article:
reset {
...
shift { k: (Int=>Int) => // the continuation k will be the '_ + 1' below
k(7)
} + 1
}
// result: 8
...why is the result 8? That would probably help me to get started.
