object Representable
- Companion:
- class
Value members
Concrete methods
Summon the Representable
instance for F
Summon the Representable
instance for F
Example:
scala> import cats.implicits._
scala> type Pair[A] = (A, A)
scala> Representable[Pair].index(("foo", "bar"))(false)
res0: String = bar
Derives a Bimonad
instance for any Representable
functor whose representation
has a Monoid
instance.
Derives a Bimonad
instance for any Representable
functor whose representation
has a Monoid
instance.
Derives a Distributive
instance for any Representable
functor
Derives a Distributive
instance for any Representable
functor
Implicits
Implicits
implicit def catsRepresentableForFunction1[E](implicit EF: Functor[[_] =>> E => _$14]): Aux[[_] =>> E => _$15, E]