Trait

cats

CompositeBitraverse

Related Doc: package cats

Permalink

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
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def F: Bitraverse[F]

    Permalink
  2. abstract def G: Bitraverse[G]

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def bifoldLeft[A, B, C](fab: F[G[A, B], G[A, B]], c: C)(f: (C, A) ⇒ C, g: (C, B) ⇒ C): C

    Permalink

    Collapse the structure with a left-associative function

    Collapse the structure with a left-associative function

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

    Permalink

    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
  7. 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]

    Permalink

    Collapse the structure with a right-associative function

    Collapse the structure with a right-associative function

    Definition Classes
    CompositeBifoldableBifoldable
  8. 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]]

    Permalink

    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
  9. 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]]]

    Permalink

    Sequence each side of the structure with the given functions

    Sequence each side of the structure with the given functions

    Definition Classes
    Bitraverse
  10. 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]]]

    Permalink

    Traverse each side of the structure with the given functions

    Traverse each side of the structure with the given functions

    Definition Classes
    CompositeBitraverseBitraverse
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. 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]]]]

    Permalink

    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
  13. 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]]]]

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

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

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

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

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

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

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

    Permalink

    apply a function to the "left" functor

    apply a function to the "left" functor

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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

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

    Permalink

    apply a function ro the "right" functor

    apply a function ro the "right" functor

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

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

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

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

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

    Permalink
    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