LitSeq

object LitSeq extends IterableFactory[LitSeq]
Companion:
class
trait IterableFactory[LitSeq]
trait Serializable
class Object
trait Matchable
class Any
LitSeq.type

Value members

Concrete methods

def apply[A](): LitSeq[A]
@varargs
def apply[A](head: A, rest: A*): NonEmptyLitSeq[A]
final override def empty[A]: LitSeq[A]
Definition Classes
IterableFactory
override def from[A](source: IterableOnce[A]): LitSeq[A]
Definition Classes
IterableFactory
override def newBuilder[A]: Builder[A, LitSeq[A]]
Definition Classes
IterableFactory
@varargs
def nonempty[A](head: A, rest: A*): NonEmptyLitSeq[A]

Inherited methods

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

Concrete fields

val emptyInstance: LitSeq[Nothing]

Implicits

Inherited implicits

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