scala.slick.util

iter

package iter

Visibility
  1. Public
  2. All

Type Members

  1. case class Cont[E, +A](k: (Input[E]) ⇒ IterV[E, A]) extends IterV[E, A] with Product with Serializable

  2. case class Done[E, +A](a: A, e: Input[E] = Empty) extends IterV[E, A] with Product with Serializable

  3. case class El[+E](e: E) extends Input[E] with Product with Serializable

  4. sealed trait Input[+E] extends AnyRef

  5. sealed trait IterV[E, +A] extends AnyRef

    An iteratee for DB results.

Value Members

  1. object Cont extends Serializable

  2. object EOF extends Input[Nothing] with Product with Serializable

  3. object Empty extends Input[Nothing] with Product with Serializable

Ungrouped