Packages

final case class WriterT[F[_], W, A](run: F[(W, A)]) extends Product with Serializable

Self Type
WriterT[F, W, A]
Source
WriterT.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WriterT
  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 WriterT(run: F[(W, A)])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def :++>(w: ⇒ W)(implicit F: Functor[F], W: Semigroup[W]): WriterT[F, W, A]
  4. def :++>>(f: (A) ⇒ W)(implicit F: Functor[F], W: Semigroup[W]): WriterT[F, W, A]
  5. def <++:(w: ⇒ W)(implicit F: Functor[F], W: Semigroup[W]): WriterT[F, W, A]
  6. def <<++:(f: (A) ⇒ W)(implicit F: Functor[F], s: Semigroup[W]): WriterT[F, W, A]
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def ap[B](f: ⇒ WriterT[F, W, (A) ⇒ B])(implicit F: Apply[F], W: Semigroup[W]): WriterT[F, W, B]
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def bimap[C, D](f: (W) ⇒ C, g: (A) ⇒ D)(implicit F: Functor[F]): WriterT[F, C, D]
  11. def bitraverse[G[_], C, D](f: (W) ⇒ G[C], g: (A) ⇒ G[D])(implicit G: Applicative[G], F: Traverse[F]): G[WriterT[F, C, D]]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. def colocal[X](f: (W) ⇒ X)(implicit F: Functor[F]): WriterT[F, X, A]
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatMap[B](f: (A) ⇒ WriterT[F, W, B])(implicit F: Bind[F], s: Semigroup[W]): WriterT[F, W, B]
  17. def flatMapF[B](f: (A) ⇒ F[(W, B)])(implicit F: Bind[F], s: Semigroup[W]): WriterT[F, W, B]
  18. def foldRight[B](z: ⇒ B)(f: (A, ⇒ B) ⇒ B)(implicit F: Foldable[F]): B
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def leftMap[C](f: (W) ⇒ C)(implicit F: Functor[F]): WriterT[F, C, A]
  22. def map[B](f: (A) ⇒ B)(implicit F: Functor[F]): WriterT[F, W, B]
  23. def mapT[G[_], W2, B](f: (F[(W, A)]) ⇒ G[(W2, B)]): WriterT[G, W2, B]
  24. def mapValue[X, B](f: ((W, A)) ⇒ (X, B))(implicit F: Functor[F]): WriterT[F, X, B]
  25. def mapWritten[X](f: (W) ⇒ X)(implicit F: Functor[F]): WriterT[F, X, A]
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. def off: UnwriterT[F, W, A]
  30. def reset(implicit Z: Monoid[W], F: Functor[F]): WriterT[F, W, A]
  31. val run: F[(W, A)]
  32. def rwst[R, S](implicit F: Functor[F]): ReaderWriterStateT[F, R, W, S, A]
  33. def swap(implicit F: Functor[F]): WriterT[F, A, W]
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def traverse[G[_], B](f: (A) ⇒ G[B])(implicit G: Applicative[G], F: Traverse[F]): G[WriterT[F, W, B]]
  36. def unary_-: UnwriterT[F, W, A]

    alias for off

  37. def value(implicit F: Functor[F]): F[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
    @throws( ... ) @native()
  41. def wpoint[G[_]](implicit F: Functor[F], P: Applicative[G]): WriterT[F, G[W], A]
  42. def written(implicit F: Functor[F]): F[W]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped