Class

monix.eval.Coeval

TypeClassInstances

Related Doc: package Coeval

Permalink

class TypeClassInstances extends DeferrableClass[Coeval] with MemoizableClass[Coeval] with RecoverableClass[Coeval, Throwable] with ComonadClass[Coeval] with MonadRecClass[Coeval]

Groups the implementation for the type-classes defined in monix.types.

Linear Supertypes
MonadRecClass[Coeval], MonadClass[Coeval], Monad[Coeval], MonadRec[Coeval], ComonadClass[Coeval], CoflatMapClass[Coeval], CoflatMap[Coeval], Comonad[Coeval], RecoverableClass[Coeval, Throwable], Recoverable[Coeval, Throwable], MemoizableClass[Coeval], Memoizable[Coeval], DeferrableClass[Coeval], ApplicativeClass[Coeval], FunctorClass[Coeval], Functor[Coeval], Applicative[Coeval], Deferrable[Coeval], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypeClassInstances
  2. MonadRecClass
  3. MonadClass
  4. Monad
  5. MonadRec
  6. ComonadClass
  7. CoflatMapClass
  8. CoflatMap
  9. Comonad
  10. RecoverableClass
  11. Recoverable
  12. MemoizableClass
  13. Memoizable
  14. DeferrableClass
  15. ApplicativeClass
  16. FunctorClass
  17. Functor
  18. Applicative
  19. Deferrable
  20. Serializable
  21. Serializable
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TypeClassInstances()

    Permalink

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. def ap[A, B](ff: Coeval[(A) ⇒ B])(fa: Coeval[A]): Coeval[B]

    Permalink
    Definition Classes
    TypeClassInstances → Applicative
  5. final def applicative: Applicative[Coeval]

    Permalink
    Definition Classes
    ApplicativeClass
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def coflatMap[A, B](fa: Coeval[A])(f: (Coeval[A]) ⇒ B): Coeval[B]

    Permalink
    Definition Classes
    TypeClassInstances → CoflatMap
  9. final def coflatMap: CoflatMap[Coeval]

    Permalink
    Definition Classes
    CoflatMapClass
  10. def coflatten[A](fa: Coeval[A]): Coeval[Coeval[A]]

    Permalink
    Definition Classes
    CoflatMap
  11. final def comonad: Comonad[Coeval]

    Permalink
    Definition Classes
    ComonadClass
  12. def defer[A](fa: ⇒ Coeval[A]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Deferrable
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def eval[A](a: ⇒ A): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Deferrable
  16. def evalOnce[A](a: ⇒ A): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Memoizable
  17. def extract[A](x: Coeval[A]): A

    Permalink
    Definition Classes
    TypeClassInstances → Comonad
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def flatMap[A, B](fa: Coeval[A])(f: (A) ⇒ Coeval[B]): Coeval[B]

    Permalink
    Definition Classes
    TypeClassInstances → Monad
  20. def flatten[A](ffa: Coeval[Coeval[A]]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Monad
  21. final def functor: Functor[Coeval]

    Permalink
    Definition Classes
    FunctorClass
  22. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  25. def map[A, B](fa: Coeval[A])(f: (A) ⇒ B): Coeval[B]

    Permalink
    Definition Classes
    TypeClassInstances → Functor
  26. def map2[A, B, Z](fa: Coeval[A], fb: Coeval[B])(f: (A, B) ⇒ Z): Coeval[Z]

    Permalink
    Definition Classes
    TypeClassInstances → Applicative
  27. final def memoizable: Memoizable[Coeval]

    Permalink
    Definition Classes
    MemoizableClass
  28. def memoize[A](fa: Coeval[A]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Memoizable
  29. final def monad: Monad[Coeval]

    Permalink
    Definition Classes
    MonadClass
  30. final def monadRec: MonadRec[Coeval]

    Permalink
    Definition Classes
    MonadRecClass
  31. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  34. def onErrorHandle[A](fa: Coeval[A])(f: (Throwable) ⇒ A): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Recoverable
  35. def onErrorHandleWith[A](fa: Coeval[A])(f: (Throwable) ⇒ Coeval[A]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Recoverable
  36. def onErrorRecover[A](fa: Coeval[A])(pf: PartialFunction[Throwable, A]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Recoverable
  37. def onErrorRecoverWith[A](fa: Coeval[A])(pf: PartialFunction[Throwable, Coeval[A]]): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Recoverable
  38. def pure[A](a: A): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Applicative
  39. def raiseError[A](e: Throwable): Coeval[A]

    Permalink
    Definition Classes
    TypeClassInstances → Recoverable
  40. final def recoverable: Recoverable[Coeval, Throwable]

    Permalink
    Definition Classes
    RecoverableClass
  41. final def suspendable: Deferrable[Coeval]

    Permalink
    Definition Classes
    DeferrableClass
  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  43. def tailRecM[A, B](a: A)(f: (A) ⇒ Coeval[Either[A, B]]): Coeval[B]

    Permalink
    Definition Classes
    MonadRec
  44. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from MonadRecClass[Coeval]

Inherited from MonadClass[Coeval]

Inherited from Monad[Coeval]

Inherited from MonadRec[Coeval]

Inherited from ComonadClass[Coeval]

Inherited from CoflatMapClass[Coeval]

Inherited from CoflatMap[Coeval]

Inherited from Comonad[Coeval]

Inherited from RecoverableClass[Coeval, Throwable]

Inherited from Recoverable[Coeval, Throwable]

Inherited from MemoizableClass[Coeval]

Inherited from Memoizable[Coeval]

Inherited from DeferrableClass[Coeval]

Inherited from ApplicativeClass[Coeval]

Inherited from FunctorClass[Coeval]

Inherited from Functor[Coeval]

Inherited from Applicative[Coeval]

Inherited from Deferrable[Coeval]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped