final case class Fold[F[_], A, X](initial: A, reduce: (A, X) => F[A]) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Fold
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Fold(initial: A, reduce: (A, X) => F[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def and[B, AB](that: Fold[F, B, X])(implicit F: Applicative[F]): Fold[F, (A, B), X]
  5. def andWith[B, AB](that: Fold[F, B, X])(ana: (A, B) => AB, cata: (AB) => (A, B))(implicit F: Applicative[F]): Fold[F, AB, X]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def contramap[Y](f: (Y) => X): Fold[F, A, Y]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def expand[B](init: (A) => B, read: (B) => A, update: (B, A) => B)(implicit F: Functor[F]): Fold[F, B, X]
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def focus[B](get: (A) => B)(set: (A, B) => A)(implicit F: Functor[F]): Fold[F, B, X]
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def init(a: A): Fold[F, A, X]
  15. val initial: A
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def or[B, Y](that: Fold[F, B, Y])(implicit F: Functor[F]): Fold[F, (A, B), Either[X, Y]]
  21. def orWith[B, Y, AB, XY](that: Fold[F, B, Y])(anaAB: (A, B) => AB, cataAB: (AB) => (A, B), cataXY: (XY) => Either[X, Y])(implicit F: Functor[F]): Fold[F, AB, XY]
  22. def productElementNames: Iterator[String]
    Definition Classes
    Product
  23. val reduce: (A, X) => F[A]
  24. def runFoldable[G[_]](gb: G[X])(implicit arg0: Foldable[G], F: Monad[F]): F[A]
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped