Class/Object

scalaz

ListT

Related Docs: object ListT | package scalaz

Permalink

final case class ListT[M[_], A](run: M[List[A]]) extends Product with Serializable

ListT monad transformer.

Source
ListT.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ListT
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ListT(run: M[List[A]])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(bs: ⇒ ListT[M, A])(implicit M: Bind[M]): ListT[M, A]

    Permalink
  4. def ::(a: A)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[B](pf: PartialFunction[A, B])(implicit M: Functor[M]): ListT[M, B]

    Permalink
  9. def drop(n: Int)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  10. def dropWhile(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def filter(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def find(predicate: (A) ⇒ Boolean)(implicit M: Functor[M]): OptionT[M, A]

    Permalink
  15. def flatMap[B](f: (A) ⇒ ListT[M, B])(implicit M: Monad[M]): ListT[M, B]

    Permalink
  16. def flatMapF[B](f: (A) ⇒ M[List[B]])(implicit M: Monad[M]): ListT[M, B]

    Permalink
  17. def foldLeft[B](z: ⇒ B)(f: (⇒ B, ⇒ A) ⇒ B)(implicit M: Functor[M]): M[B]

    Permalink
  18. def foldRight[B](z: ⇒ B)(f: (⇒ A, ⇒ B) ⇒ B)(implicit M: Functor[M]): M[B]

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def headMaybe(implicit M: Functor[M]): MaybeT[M, A]

    Permalink
  21. def headOption(implicit M: Functor[M]): OptionT[M, A]

    Permalink
  22. def isEmpty(implicit M: Functor[M]): M[Boolean]

    Permalink
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def length(implicit M: Functor[M]): M[Int]

    Permalink
  25. def map[B](f: (A) ⇒ B)(implicit M: Functor[M]): ListT[M, B]

    Permalink
  26. def mapT[F[_], B](f: (M[List[A]]) ⇒ F[List[B]]): ListT[F, B]

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. val run: M[List[A]]

    Permalink
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def tail(implicit M: Functor[M]): ListT[M, A]

    Permalink

    Don't use iteratively!

  33. def tailM(implicit M: Applicative[M]): M[ListT[M, A]]

    Permalink
  34. def take(n: Int)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  35. def takeWhile(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]

    Permalink
  36. def toList: M[List[A]]

    Permalink
  37. def uncons(implicit M: Applicative[M]): M[Option[(A, ListT[M, A])]]

    Permalink
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped