object LazyList extends IterableFactory[LazyList]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyList
  2. IterableFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class Deferrer [A] extends AnyRef
  2. type Evaluated[+A] = Option[(A, LazyList[A])]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](xs: A*): LazyList[A]
    Definition Classes
    IterableFactory
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. implicit def canBuildIterable[A]: CanBuild[A, LazyList[A]]
    Definition Classes
    IterableFactory
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def empty[A]: LazyList[A]
    Definition Classes
    LazyListIterableFactory
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def fill[A](n: Int)(elem: ⇒ A): LazyList[A]
    Definition Classes
    IterableFactory
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def fromIterable[A](coll: collection.Iterable[A]): LazyList[A]
    Definition Classes
    LazyListIterableFactory
  14. def fromIterator[A](it: Iterator[A]): LazyList[A]
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def newBuilder[A](): Builder[A, LazyList[A]]
    Definition Classes
    LazyListIterableFactory
  20. final def notify(): Unit
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def unfold[A, S](init: S)(f: (S) ⇒ Option[(A, S)]): LazyList[A]

    A

    Type of the elements

    S

    Type of the internal state

    init

    State initial value

    f

    Computes the next element (or returns None to signal the end of the collection)

    returns

    a LazyList by using a function f producing elements of type A and updating an internal state S.

  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. object #::
  29. object Empty extends LazyList[Nothing]

Inherited from IterableFactory[LazyList]

Inherited from AnyRef

Inherited from Any

Ungrouped