Packages

final case class TheseT[F[_], A, B](run: F[\&/[A, B]]) extends Product with Serializable

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

Instance Constructors

  1. new TheseT(run: F[\&/[A, B]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &&&[AA >: A, C](t: TheseT[F, AA, C])(implicit M: Semigroup[AA], F: Apply[F]): TheseT[F, AA, (B, C)]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def a(implicit F: Functor[F]): OptionT[F, A]
  6. def append[AA >: A, BB >: B](that: => TheseT[F, AA, BB])(implicit F: Apply[F], SA: Semigroup[AA], SB: Semigroup[BB]): TheseT[F, AA, BB]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def b(implicit F: Functor[F]): OptionT[F, B]
  9. def bimap[C, D](f: (A) => C, g: (B) => D)(implicit F: Functor[F]): TheseT[F, C, D]
  10. def bitraverse[G[_], C, D](f: (A) => G[C], g: (B) => G[D])(implicit F: Traverse[F], G: Applicative[G]): G[TheseT[F, C, D]]
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def exists(p: (B) => Boolean)(implicit F: Functor[F]): F[Boolean]
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def flatMap[AA >: A, C](f: (B) => TheseT[F, AA, C])(implicit M: Monad[F], S: Semigroup[AA]): TheseT[F, AA, C]
  16. def flatMapF[AA >: A, C](f: (B) => F[\&/[AA, C]])(implicit M: Monad[F], S: Semigroup[AA]): TheseT[F, AA, C]
  17. def fold[X](s: (A) => X, t: (B) => X, q: (A, B) => X)(implicit F: Functor[F]): F[X]
  18. def foldRight[Z](z: => Z)(f: (B, => Z) => Z)(implicit F: Foldable[F]): Z
  19. def forall(p: (B) => Boolean)(implicit F: Functor[F]): F[Boolean]
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getOrElse(default: => B)(implicit F: Functor[F]): F[B]
  22. def isBoth(implicit F: Functor[F]): F[Boolean]
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def isThat(implicit F: Functor[F]): F[Boolean]
  25. def isThis(implicit F: Functor[F]): F[Boolean]
  26. def leftMap[C](f: (A) => C)(implicit F: Functor[F]): TheseT[F, C, B]
  27. def map[C](f: (B) => C)(implicit F: Functor[F]): TheseT[F, A, C]
  28. def mapT[G[_], C, D](f: (F[\&/[A, B]]) => G[\&/[C, D]]): TheseT[G, C, D]
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def onlyBoth(implicit F: Functor[F]): OptionT[F, (A, B)]
  33. def onlyThat(implicit F: Functor[F]): OptionT[F, B]
  34. def onlyThis(implicit F: Functor[F]): OptionT[F, A]
  35. def onlyThisOrThat(implicit F: Functor[F]): OptionT[F, \/[A, B]]
  36. def pad(implicit F: Functor[F]): F[(Option[A], Option[B])]
  37. def productElementNames: Iterator[String]
    Definition Classes
    Product
  38. val run: F[\&/[A, B]]
  39. def show(implicit SA: Show[A], SB: Show[B], F: Functor[F]): F[Cord]
  40. def swap(implicit F: Functor[F]): TheseT[F, B, A]
  41. def swapped[AA, BB](k: (\&/[B, A]) => \&/[BB, AA])(implicit F: Functor[F]): TheseT[F, AA, BB]
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toList(implicit F: Functor[F]): ListT[F, B]
  44. def traverse[G[_], AA >: A, D](g: (B) => G[D])(implicit F: Traverse[F], G: Applicative[G]): G[TheseT[F, AA, D]]
  45. def unary_~(implicit F: Functor[F]): TheseT[F, B, A]
  46. def valueOr[BB >: B](x: (A) => BB)(implicit M: Semigroup[BB], F: Functor[F]): F[BB]
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  50. def |(default: => B)(implicit F: Functor[F]): F[B]
  51. def ~[AA, BB](k: (\&/[B, A]) => \&/[BB, AA])(implicit F: Functor[F]): TheseT[F, AA, BB]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped