Cons

case class Cons[A](head: () => A, tail: () => LazyList[A]) extends LazyList[A]
trait Serializable
trait Product
trait Equals
trait LazyList[A]
class Object
trait Matchable
class Any

Value members

Inherited methods

def ++(b: LazyList[A]): LazyList[A]
Inherited from:
LazyList
def map[B](f: A => B): LazyList[B]
Inherited from:
LazyList
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def toList(length: Int): List[A]
Inherited from:
LazyList