Skip to content

Instantly share code, notes, and snippets.

@qdx
Forked from arnolddevos/gist:574873
Created May 14, 2014 03:23
Show Gist options
  • Save qdx/e8c5b54e8f8abef08686 to your computer and use it in GitHub Desktop.
Save qdx/e8c5b54e8f8abef08686 to your computer and use it in GitHub Desktop.
import scala.util.continuations._
class Generator[A] extends Iterator[A] with (A => Unit @ suspendable) {
private var a: Option[A] = None
private var k: Option[Unit => Unit] = None
def next = {
val a0 = a.get
val k0 = k.get
a = None
k = None
k0()
a0
}
def hasNext = k.isDefined
def apply(a0: A): Unit @ suspendable = {
a = Some(a0)
shift { k0: (Unit => Unit) => k = Some(k0) }
}
}
object Generator {
def generator[A]( f: (A => Unit @ suspendable) => Unit @ suspendable): Iterator[A] = {
val g = new Generator[A]
reset { f(g) }
g
}
trait SuspendableForeach[A]{ def foreach( f: A => Unit @suspendable ): Unit @ suspendable }
def suspendable[A]( ible: Iterable[A]) = new SuspendableForeach[A] {
def foreach( f: A => Unit @ suspendable ) : Unit @ suspendable = {
val i = ible.iterator
while( i.hasNext ) f(i.next)
}
}
}
object Main {
import Generator._
def example = generator[String] { yld =>
yld( "first" )
for( i <- suspendable(List(1,2,3)); j <- suspendable(List(4,5,6))) {
yld((i*j).toString)
}
yld("last")
}
def main(args: Array[String]) {
for( a <- example ) println(a)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment