package
iter
Type Members
-
case class
Cont[E, +A](k: (Input[E]) ⇒ IterV[E, A]) extends IterV[E, A] with Product with Serializable
-
case class
Done[E, +A](a: A, e: Input[E] = Empty) extends IterV[E, A] with Product with Serializable
-
case class
El[+E](e: E) extends Input[E] with Product with Serializable
-
sealed
trait
Input[+E] extends AnyRef
-
sealed
trait
IterV[E, +A] extends AnyRef
Value Members
-
object
Cont extends Serializable
-
object
EOF extends Input[Nothing] with Product with Serializable
-
object
Empty extends Input[Nothing] with Product with Serializable