Packages

o

scalaz.std

lazylist

object lazylist extends LazyListInstances with LazyListFunctions

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. lazylist
  2. LazyListFunctions
  3. LazyListInstances
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def heads[A](as: LazyList[A]): LazyList[LazyList[A]]

    [as take 1, as take 2, ..., as]

    [as take 1, as take 2, ..., as]

    Definition Classes
    LazyListFunctions
  12. final def interleave[A](s1: LazyList[A], s2: LazyList[A]): LazyList[A]
    Definition Classes
    LazyListFunctions
  13. final def intersperse[A](as: LazyList[A], a: A): LazyList[A]

    Intersperse the element a between each adjacent pair of elements in as

    Intersperse the element a between each adjacent pair of elements in as

    Definition Classes
    LazyListFunctions
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. implicit def lazylistEqual[A](implicit A0: Equal[A]): Equal[LazyList[A]]
    Definition Classes
    LazyListInstances
  16. implicit val lazylistInstance: Traverse[LazyList] with MonadPlus[LazyList] with BindRec[LazyList] with Zip[LazyList] with Unzip[LazyList] with Align[LazyList] with IsEmpty[LazyList] with Cobind[LazyList]
    Definition Classes
    LazyListInstances
  17. implicit def lazylistMonoid[A]: Monoid[LazyList[A]]
    Definition Classes
    LazyListInstances
  18. implicit def lazylistOrder[A](implicit A0: Order[A]): Order[LazyList[A]]
    Definition Classes
    LazyListInstances
  19. implicit def lazylistShow[A](implicit A0: Show[A]): Show[LazyList[A]]
    Definition Classes
    LazyListInstances
  20. implicit val lazylistZipApplicative: Applicative[[α]TagModule.@@[LazyList[α], Tags.Zip]]

    An alternative scalaz.Applicative instance for LazyList, discriminated by the type tag scalaz.Tags.Zip, that zips lazylists together.

    An alternative scalaz.Applicative instance for LazyList, discriminated by the type tag scalaz.Tags.Zip, that zips lazylists together.

    Example:

    import scalaz.Tags.Zip
    lazylistZipApplicative.apply2(Zip(LazyList(1, 2)), Zip(LazyList(3, 4)))(_ * _) // LazyList(3, 8)
    Definition Classes
    LazyListInstances
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. final def tails[A](as: LazyList[A]): LazyList[LazyList[A]]

    [as, as.tail, as.tail.tail, ..., LazyList(as.last)]

    [as, as.tail, as.tail.tail, ..., LazyList(as.last)]

    Definition Classes
    LazyListFunctions
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def toZipper[A](as: LazyList[A]): Option[Zipper[A]]
    Definition Classes
    LazyListFunctions
  28. def unfold[A, B](seed: A)(f: (A) => Option[(B, A)]): LazyList[B]
    Definition Classes
    LazyListFunctions
  29. final def unfoldForest[A, B](as: LazyList[A])(f: (A) => (B, () => LazyList[A])): LazyList[Tree[B]]
    Definition Classes
    LazyListFunctions
  30. final def unfoldForestM[A, B, M[_]](as: LazyList[A])(f: (A) => M[(B, LazyList[A])])(implicit M: Monad[M]): M[LazyList[Tree[B]]]
    Definition Classes
    LazyListFunctions
  31. def unfoldm[A, B](seed: A)(f: (A) => Maybe[(B, A)]): LazyList[B]
    Definition Classes
    LazyListFunctions
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def zapp[A, B, C](a: LazyList[A])(f: LazyList[(A) => (B) => C]): LazyList[(B) => C]
    Definition Classes
    LazyListFunctions
  36. final def zipperEnd[A](as: LazyList[A]): Option[Zipper[A]]
    Definition Classes
    LazyListFunctions
  37. object lazylistSyntax extends ToLazyListOps

Inherited from LazyListFunctions

Inherited from LazyListInstances

Inherited from AnyRef

Inherited from Any

Ungrouped