EmptyBatch

object EmptyBatch extends Batch[Nothing]

Reusable Batch implementation that's always empty.

class Batch[Nothing]
trait Serializable
class Object
trait Matchable
class Any

Value members

Concrete methods

override def collect[B](pf: PartialFunction[Nothing, B]): Batch[B]
Definition Classes
override def cursor(): BatchCursor[Nothing]
Definition Classes
override def drop(n: Int): Batch[Nothing]
Definition Classes
override def filter(p: Nothing => Boolean): Batch[Nothing]
Definition Classes
override def foldLeft[R](initial: R)(op: (R, Nothing) => R): R
Definition Classes
override def map[B](f: Nothing => B): Batch[B]
Definition Classes
override def slice(from: Int, until: Int): Batch[Nothing]
Definition Classes
override def take(n: Int): Batch[Nothing]
Definition Classes

Inherited methods

def toArray[B : ClassTag]: Array[B]

Converts this generator into a standard Array.

Converts this generator into a standard Array.

Inherited from:
Batch
def toIterable: Iterable[Nothing]

Converts this generator into a Scala Iterable.

Converts this generator into a Scala Iterable.

Inherited from:
Batch
def toList: List[Nothing]

Converts this generator into a Scala immutable List.

Converts this generator into a Scala immutable List.

Inherited from:
Batch