cats

CompositeBitraverse

trait CompositeBitraverse[F[_, _], G[_, _]] extends Bitraverse[[A, B]F[G[A, B], G[A, B]]] with CompositeBifoldable[F, G]

Linear Supertypes
CompositeBifoldable[F, G], Bitraverse[[A, B]F[G[A, B], G[A, B]]], Bifunctor[[A, B]F[G[A, B], G[A, B]]], Bifoldable[[A, B]F[G[A, B], G[A, B]]], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CompositeBitraverse
  2. CompositeBifoldable
  3. Bitraverse
  4. Bifunctor
  5. Bifoldable
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def F: Bitraverse[F]

  2. abstract def G: Bitraverse[G]

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. def bifoldLeft[A, B, C](fab: F[G[A, B], G[A, B]], c: C)(f: (C, A) ⇒ C, g: (C, B) ⇒ C): C

    Collapse the structure with a left-associative function

    Collapse the structure with a left-associative function

    Definition Classes
    CompositeBifoldableBifoldable
  8. def bifoldMap[A, B, C](fab: F[G[A, B], G[A, B]])(f: (A) ⇒ C, g: (B) ⇒ C)(implicit C: Monoid[C]): C

    Collapse the structure by mapping each element to an element of a type that has a cats.Monoid

    Collapse the structure by mapping each element to an element of a type that has a cats.Monoid

    Definition Classes
    Bifoldable
  9. def bifoldRight[A, B, C](fab: F[G[A, B], G[A, B]], c: Eval[C])(f: (A, Eval[C]) ⇒ Eval[C], g: (B, Eval[C]) ⇒ Eval[C]): Eval[C]

    Collapse the structure with a right-associative function

    Collapse the structure with a right-associative function

    Definition Classes
    CompositeBifoldableBifoldable
  10. def bimap[A, B, C, D](fab: F[G[A, B], G[A, B]])(f: (A) ⇒ C, g: (B) ⇒ D): F[G[C, D], G[C, D]]

    The quintessential method of the Bifunctor trait, it applies a function to each "side" of the bifunctor.

    The quintessential method of the Bifunctor trait, it applies a function to each "side" of the bifunctor.

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

    Sequence each side of the structure with the given functions

    Sequence each side of the structure with the given functions

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

    Traverse each side of the structure with the given functions

    Traverse each side of the structure with the given functions

    Definition Classes
    CompositeBitraverseBitraverse
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def compose[G[_, _]](implicit ev: Bitraverse[G]): Bitraverse[[A, B]F[G[G[A, B], G[A, B]], G[G[A, B], G[A, B]]]]

    If F and G are both cats.Bitraverse then so is their composition F[G[_, _], G[_, _]]

    If F and G are both cats.Bitraverse then so is their composition F[G[_, _], G[_, _]]

    Definition Classes
    Bitraverse
  15. def compose[G[_, _]](implicit ev: Bifoldable[G]): Bifoldable[[A, B]F[G[G[A, B], G[A, B]], G[G[A, B], G[A, B]]]]

    Definition Classes
    Bifoldable
  16. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  22. def leftMap[A, B, C](fab: F[G[A, B], G[A, B]])(f: (A) ⇒ C): F[G[C, B], G[C, B]]

    apply a function to the "left" functor

    apply a function to the "left" functor

    Definition Classes
    Bifunctor
  23. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  26. def rightMap[A, B, C](fab: F[G[A, B], G[A, B]])(f: (B) ⇒ C): F[G[A, C], G[A, C]]

    apply a function ro the "right" functor

    apply a function ro the "right" functor

    Definition Classes
    Bifunctor
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CompositeBifoldable[F, G]

Inherited from Bitraverse[[A, B]F[G[A, B], G[A, B]]]

Inherited from Bifunctor[[A, B]F[G[A, B], G[A, B]]]

Inherited from Bifoldable[[A, B]F[G[A, B], G[A, B]]]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped