ChunkLike

object ChunkLike extends SeqFactory[Chunk]
Companion:
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def empty[A]: Chunk[A]

Returns the empty Chunk.

Returns the empty Chunk.

def from[A](source: IterableOnce[A]): Chunk[A]

Constructs a Chunk from the specified IterableOnce.

Constructs a Chunk from the specified IterableOnce.

Constructs a new ChunkBuilder. This operation allocates mutable state and is not referentially transparent. It is provided for compatibility with Scala's collection library and should not be used for other purposes.

Constructs a new ChunkBuilder. This operation allocates mutable state and is not referentially transparent. It is provided for compatibility with Scala's collection library and should not be used for other purposes.

Inherited methods

def apply[A](elems: A*): Chunk[A]
Inherited from:
IterableFactory
def concat[A](xss: Iterable[A]*): Chunk[A]
Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(elem: => A): Chunk[Chunk[Chunk[Chunk[Chunk[A]]]]]
Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int, n4: Int)(elem: => A): Chunk[Chunk[Chunk[Chunk[A]]]]
Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int)(elem: => A): Chunk[Chunk[Chunk[A]]]
Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int)(elem: => A): Chunk[Chunk[A]]
Inherited from:
IterableFactory
def fill[A](n: Int)(elem: => A): Chunk[A]
Inherited from:
IterableFactory
def iterate[A](start: A, len: Int)(f: A => A): Chunk[A]
Inherited from:
IterableFactory
def range[A : Integral](start: A, end: A, step: A): Chunk[A]
Inherited from:
IterableFactory
def range[A : Integral](start: A, end: A): Chunk[A]
Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) => A): Chunk[Chunk[Chunk[Chunk[Chunk[A]]]]]
Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) => A): Chunk[Chunk[Chunk[Chunk[A]]]]
Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) => A): Chunk[Chunk[Chunk[A]]]
Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int)(f: (Int, Int) => A): Chunk[Chunk[A]]
Inherited from:
IterableFactory
def tabulate[A](n: Int)(f: Int => A): Chunk[A]
Inherited from:
IterableFactory
final def unapplySeq[A](x: Chunk[A]): UnapplySeqWrapper[A]
Inherited from:
SeqFactory
def unfold[A, S](init: S)(f: S => Option[(A, S)]): Chunk[A]
Inherited from:
IterableFactory

Implicits

Inherited implicits

implicit def iterableFactory[A]: Factory[A, Chunk[A]]
Inherited from:
IterableFactory