Packages

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

ListT monad transformer.

Source
ListT.scala
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]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(bs: ⇒ ListT[M, A])(implicit M: Bind[M]): ListT[M, A]
  4. def ::(a: A)(implicit M: Functor[M]): ListT[M, A]
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def collect[B](pf: PartialFunction[A, B])(implicit M: Functor[M]): ListT[M, B]
  9. def drop(n: Int)(implicit M: Functor[M]): ListT[M, A]
  10. def dropWhile(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def filter(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]
  13. def finalize(): Unit
    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]
  15. def flatMap[B](f: (A) ⇒ ListT[M, B])(implicit M: Monad[M]): ListT[M, B]
  16. def flatMapF[B](f: (A) ⇒ M[List[B]])(implicit M: Monad[M]): ListT[M, B]
  17. def foldLeft[B](z: ⇒ B)(f: (⇒ B, ⇒ A) ⇒ B)(implicit M: Functor[M]): M[B]
  18. def foldRight[B](z: ⇒ B)(f: (⇒ A, ⇒ B) ⇒ B)(implicit M: Functor[M]): M[B]
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def headMaybe(implicit M: Functor[M]): MaybeT[M, A]
  21. def headOption(implicit M: Functor[M]): OptionT[M, A]
  22. def isEmpty(implicit M: Functor[M]): M[Boolean]
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def length(implicit M: Functor[M]): M[Int]
  25. def map[B](f: (A) ⇒ B)(implicit M: Functor[M]): ListT[M, B]
  26. def mapT[F[_], B](f: (M[List[A]]) ⇒ F[List[B]]): ListT[F, B]
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. val run: M[List[A]]
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def tail(implicit M: Functor[M]): ListT[M, A]

    Don't use iteratively!

  33. def tailM(implicit M: Applicative[M]): M[ListT[M, A]]
  34. def take(n: Int)(implicit M: Functor[M]): ListT[M, A]
  35. def takeWhile(p: (A) ⇒ Boolean)(implicit M: Functor[M]): ListT[M, A]
  36. def toList: M[List[A]]
  37. def uncons(implicit M: Applicative[M]): M[Option[(A, ListT[M, A])]]
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped