LazyList

sealed trait LazyList[A]

A very naive lazy-list. Unfortunately using Scala Stream results in the head being evaluated prematurely for shrinking.

A very naive lazy-list. Unfortunately using Scala Stream results in the head being evaluated prematurely for shrinking.

Companion
object
class Object
trait Matchable
class Any
class Cons[A]
class Nil[A]

Value members

Concrete methods

def ++(b: LazyList[A]): LazyList[A]
def map[B](f: A => B): LazyList[B]
def toList(length: Int): List[A]