scalaz

LazyEitherTBitraverse

trait LazyEitherTBitraverse[F[+_]] extends Bitraverse[[α, β]LazyEitherT[F, α, β]]

Source
LazyEitherT.scala
Linear Supertypes
Bitraverse[[α, β]LazyEitherT[F, α, β]], Bifoldable[[α, β]LazyEitherT[F, α, β]], Bifunctor[[α, β]LazyEitherT[F, α, β]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LazyEitherTBitraverse
  2. Bitraverse
  3. Bifoldable
  4. Bifunctor
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Bitraversal[G[_]] extends AnyRef

    Definition Classes
    Bitraverse

Abstract Value Members

  1. implicit abstract def F: Traverse[F]

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

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

    Definition Classes
    Any
  7. final def bifoldL[A, B, C](fa: LazyEitherT[F, A, B], z: C)(f: (C) ⇒ (A) ⇒ C)(g: (C) ⇒ (B) ⇒ C): C

    Curred version of foldLeft

    Curred version of foldLeft

    Definition Classes
    Bifoldable
  8. def bifoldLShape[A, B, C](fa: LazyEitherT[F, A, B], z: C)(f: (C, A) ⇒ C)(g: (C, B) ⇒ C): (C, LazyEitherT[F, Unit, Unit])

    Definition Classes
    Bitraverse
  9. def bifoldLeft[A, B, C](fa: LazyEitherT[F, A, B], z: C)(f: (C, A) ⇒ C)(g: (C, B) ⇒ C): C

    Definition Classes
    BitraverseBifoldable
  10. def bifoldMap[A, B, M](fa: LazyEitherT[F, A, B])(f: (A) ⇒ M)(g: (B) ⇒ M)(implicit F: Monoid[M]): M

    Definition Classes
    BitraverseBifoldable
  11. def bifoldMap1[A, B, M](fa: LazyEitherT[F, A, B])(f: (A) ⇒ M)(g: (B) ⇒ M)(implicit F: Semigroup[M]): Option[M]

    Definition Classes
    Bifoldable
  12. final def bifoldR[A, B, C](fa: LazyEitherT[F, A, B], z: ⇒ C)(f: (A) ⇒ (⇒ C) ⇒ C)(g: (B) ⇒ (⇒ C) ⇒ C): C

    Curried version of foldRight

    Curried version of foldRight

    Definition Classes
    Bifoldable
  13. def bifoldRight[A, B, C](fa: LazyEitherT[F, A, B], z: ⇒ C)(f: (A, ⇒ C) ⇒ C)(g: (B, ⇒ C) ⇒ C): C

    Definition Classes
    BitraverseBifoldable
  14. val bifoldableSyntax: BifoldableSyntax[[α, β]LazyEitherT[F, α, β]]

    Definition Classes
    Bifoldable
  15. val bifunctorSyntax: BifunctorSyntax[[α, β]LazyEitherT[F, α, β]]

    Definition Classes
    Bifunctor
  16. def bimap[A, B, C, D](fab: LazyEitherT[F, A, B])(f: (A) ⇒ C, g: (B) ⇒ D): LazyEitherT[F, C, D]

    Definition Classes
    BitraverseBifunctor
  17. def bisequence[G[_], A, B](x: LazyEitherT[F, G[A], G[B]])(implicit arg0: Applicative[G]): G[LazyEitherT[F, A, B]]

    Definition Classes
    Bitraverse
  18. def bitraversal[G[_]](implicit arg0: Applicative[G]): Bitraversal[G]

    Definition Classes
    Bitraverse
  19. def bitraversalS[S]: Bitraversal[[x]StateT[[+X]X, S, x]]

    Definition Classes
    Bitraverse
  20. def bitraverse[G[_], A, B, C, D](fa: LazyEitherT[F, A, B])(f: (A) ⇒ G[C])(g: (B) ⇒ G[D])(implicit arg0: Applicative[G]): G[LazyEitherT[F, C, D]]

    Definition Classes
    Bitraverse
  21. def bitraverseF[G[_], A, B, C, D](f: (A) ⇒ G[C], g: (B) ⇒ G[D])(implicit arg0: Applicative[G]): (LazyEitherT[F, A, B]) ⇒ G[LazyEitherT[F, C, D]]

    Definition Classes
    Bitraverse
  22. def bitraverseImpl[G[_], A, B, C, D](fab: LazyEitherT[F, A, B])(f: (A) ⇒ G[C], g: (B) ⇒ G[D])(implicit arg0: Applicative[G]): G[LazyEitherT[F, C, D]]

    Definition Classes
    LazyEitherTBitraverseBitraverse
  23. def bitraverseKTrampoline[S, G[+_], A, B, C, D](fa: LazyEitherT[F, A, B])(f: (A) ⇒ Kleisli[G, S, C])(g: (B) ⇒ Kleisli[G, S, D])(implicit arg0: Applicative[G]): Kleisli[G, S, LazyEitherT[F, C, D]]

    Bitraverse fa with a Kleisli[G, S, C] and Kleisli[G, S, D], internally using a Trampoline to avoid stack overflow.

    Bitraverse fa with a Kleisli[G, S, C] and Kleisli[G, S, D], internally using a Trampoline to avoid stack overflow.

    Definition Classes
    Bitraverse
  24. def bitraverseS[S, A, B, C, D](fa: LazyEitherT[F, A, B])(f: (A) ⇒ State[S, C])(g: (B) ⇒ State[S, D]): State[S, LazyEitherT[F, C, D]]

    Definition Classes
    Bitraverse
  25. val bitraverseSyntax: BitraverseSyntax[[α, β]LazyEitherT[F, α, β]]

    Definition Classes
    Bitraverse
  26. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  27. def compose[G[_, _]](implicit G0: Bitraverse[G]): Bitraverse[[α, β]LazyEitherT[F, G[α, β], G[α, β]]]

    The composition of Bitraverses F and G, [x,y]F[G[x,y],G[x,y]], is a Bitraverse

    The composition of Bitraverses F and G, [x,y]F[G[x,y],G[x,y]], is a Bitraverse

    Definition Classes
    Bitraverse
  28. def compose[G[_, _]](implicit G0: Bifoldable[G]): Bifoldable[[α, β]LazyEitherT[F, G[α, β], G[α, β]]]

    The composition of Bifoldables F and G, [x,y]F[G[x,y],G[x,y]], is a Bifoldable

    The composition of Bifoldables F and G, [x,y]F[G[x,y],G[x,y]], is a Bifoldable

    Definition Classes
    Bifoldable
  29. def compose[G[_, _]](implicit G0: Bifunctor[G]): Bifunctor[[α, β]LazyEitherT[F, G[α, β], G[α, β]]]

    The composition of Bifunctors F and G, [x,y]F[G[x,y],G[x,y]], is a Bifunctor

    The composition of Bifunctors F and G, [x,y]F[G[x,y],G[x,y]], is a Bifunctor

    Definition Classes
    Bifunctor
  30. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  31. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  32. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  34. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  35. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  36. def leftFoldable[X]: Foldable[[α]LazyEitherT[F, α, X]]

    Definition Classes
    Bifoldable
  37. def leftFunctor[X]: Functor[[α]LazyEitherT[F, α, X]]

    Definition Classes
    Bifunctor
  38. def leftMap[A, B, C](fab: LazyEitherT[F, A, B])(f: (A) ⇒ C): LazyEitherT[F, C, B]

    Definition Classes
    Bifunctor
  39. def leftTraverse[X]: Traverse[[α]LazyEitherT[F, α, X]]

    Definition Classes
    Bitraverse
  40. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  41. final def notify(): Unit

    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  43. def product[G[_, _]](implicit G0: Bitraverse[G]): Bitraverse[[α, β](LazyEitherT[F, α, β], G[α, β])]

    The product of Bitraverses F and G, [x,y]F[G[x,y],G[x,y]], is a Bitraverse

    The product of Bitraverses F and G, [x,y]F[G[x,y],G[x,y]], is a Bitraverse

    Definition Classes
    Bitraverse
  44. def product[G[_, _]](implicit G0: Bifoldable[G]): Bifoldable[[α, β](LazyEitherT[F, α, β], G[α, β])]

    The product of Bifoldables F and G, [x,y]F[G[x,y],G[x,y]], is a Bifoldable

    The product of Bifoldables F and G, [x,y]F[G[x,y],G[x,y]], is a Bifoldable

    Definition Classes
    Bifoldable
  45. def product[G[_, _]](implicit G0: Bifunctor[G]): Bifunctor[[α, β](LazyEitherT[F, α, β], G[α, β])]

    The product of Bifunctors F and G, [x,y]F[G[x,y],G[x,y]], is a Bifunctor

    The product of Bifunctors F and G, [x,y]F[G[x,y],G[x,y]], is a Bifunctor

    Definition Classes
    Bifunctor
  46. def rightFoldable[X]: Foldable[[α]LazyEitherT[F, X, α]]

    Definition Classes
    Bifoldable
  47. def rightFunctor[X]: Functor[[α]LazyEitherT[F, X, α]]

    Definition Classes
    Bifunctor
  48. def rightMap[A, B, D](fab: LazyEitherT[F, A, B])(g: (B) ⇒ D): LazyEitherT[F, A, D]

    Definition Classes
    Bifunctor
  49. def rightTraverse[X]: Traverse[[α]LazyEitherT[F, X, α]]

    Definition Classes
    Bitraverse
  50. def runBitraverseS[S, A, B, C, D](fa: LazyEitherT[F, A, B], s: S)(f: (A) ⇒ State[S, C])(g: (B) ⇒ State[S, D]): (S, LazyEitherT[F, C, D])

    Definition Classes
    Bitraverse
  51. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  52. def toString(): String

    Definition Classes
    AnyRef → Any
  53. def traverseSTrampoline[S, G[_], A, B, C, D](fa: LazyEitherT[F, A, B])(f: (A) ⇒ State[S, G[C]])(g: (B) ⇒ State[S, G[D]])(implicit arg0: Applicative[G]): State[S, G[LazyEitherT[F, C, D]]]

    Bitraverse fa with a State[S, G[C]] and State[S, G[D]], internally using a Trampoline to avoid stack overflow.

    Bitraverse fa with a State[S, G[C]] and State[S, G[D]], internally using a Trampoline to avoid stack overflow.

    Definition Classes
    Bitraverse
  54. def umap[A, B](faa: LazyEitherT[F, A, A])(f: (A) ⇒ B): LazyEitherT[F, B, B]

    Definition Classes
    Bifunctor
  55. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Bitraverse[[α, β]LazyEitherT[F, α, β]]

Inherited from Bifoldable[[α, β]LazyEitherT[F, α, β]]

Inherited from Bifunctor[[α, β]LazyEitherT[F, α, β]]

Inherited from AnyRef

Inherited from Any

Ungrouped