Class

cats.syntax

ReducibleOps0

Related Doc: package syntax

Permalink

final class ReducibleOps0[F[_], A] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReducibleOps0
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReducibleOps0(fa: F[A])

    Permalink

Value Members

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

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

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

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

    Permalink
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  7. def reduceMapK[G[_], B](f: (A) ⇒ G[B])(implicit F: Reducible[F], G: SemigroupK[G]): G[B]

    Permalink

    Apply f to each element of fa and combine them using the given SemigroupK[G].

    Apply f to each element of fa and combine them using the given SemigroupK[G].

    scala> import cats._, cats.data._, cats.implicits._
    scala> val f: Int => Endo[String] = i => (s => s + i)
    scala> val x: Endo[String] = NonEmptyList.of(1, 2, 3).reduceMapK(f)
    scala> val a = x("foo")
    a: String = "foo321"
  8. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped