Packages

trait Fx[F[*]] extends FxCtor[F] with CanCatch[F] with CanHandleError[F] with CanRecover[F]

Annotations
@implicitNotFound()
Since

2021-11-03

Linear Supertypes
CanRecover[F], CanHandleError[F], CanCatch[F], FxCtor[F], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Fx
  2. CanRecover
  3. CanHandleError
  4. CanCatch
  5. FxCtor
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def catchNonFatalThrowable[A](fa: => F[A]): F[Either[Throwable, A]]
    Definition Classes
    CanCatch
  2. abstract def effectOf[A](a: => A): F[A]
    Definition Classes
    FxCtor
  3. abstract def errorOf[A](throwable: Throwable): F[A]
    Definition Classes
    FxCtor
  4. abstract def flatMapFa[A, B](fa: F[A])(f: (A) => F[B]): F[B]
    Definition Classes
    FxCtor
  5. abstract def fromEffect[A](fa: => F[A]): F[A]
    Definition Classes
    FxCtor
  6. abstract def fromEither[A](either: Either[Throwable, A]): F[A]
    Definition Classes
    FxCtor
  7. abstract def fromOption[A](option: Option[A])(orElse: => Throwable): F[A]
    Definition Classes
    FxCtor
  8. abstract def fromTry[A](tryA: Try[A]): F[A]
    Definition Classes
    FxCtor
  9. implicit abstract def fxCtor: FxCtor[F]
    Attributes
    protected
    Definition Classes
    CanCatch
  10. abstract def handleNonFatal[A, AA >: A](fa: => F[A])(handleError: (Throwable) => AA): F[AA]
    Definition Classes
    CanHandleError
  11. abstract def handleNonFatalWith[A, AA >: A](fa: => F[A])(handleError: (Throwable) => F[AA]): F[AA]
    Definition Classes
    CanHandleError
  12. abstract def pureOf[A](a: A): F[A]
    Definition Classes
    FxCtor
  13. abstract def pureOrError[A](a: => A): F[A]
    Definition Classes
    FxCtor
  14. abstract def recoverFromNonFatal[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, AA]): F[AA]
    Definition Classes
    CanRecover
  15. abstract def recoverFromNonFatalWith[A, AA >: A](fa: => F[A])(handleError: PartialFunction[Throwable, F[AA]]): F[AA]
    Definition Classes
    CanRecover
  16. abstract def unitOf: F[Unit]
    Definition Classes
    FxCtor

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def catchNonFatal[A, B](fb: => F[B])(f: PartialFunction[Throwable, A]): F[Either[A, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  6. final def catchNonFatalEither[A, AA >: A, B](fab: => F[Either[A, B]])(f: PartialFunction[Throwable, AA]): F[Either[AA, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def handleEitherNonFatal[A, AA >: A, B, BB >: B](fab: => F[Either[A, B]])(handleError: (Throwable) => Either[AA, BB]): F[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  12. final def handleEitherNonFatalWith[A, AA >: A, B, BB >: B](fab: => F[Either[A, B]])(handleError: (Throwable) => F[Either[AA, BB]]): F[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def pureOfLeft[B]: PureOfLeft[F, B]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  19. def pureOfNone[A]: F[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  20. def pureOfOption[A](a: A): F[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  21. def pureOfRight[A]: PureOfRight[F, A]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  22. def pureOfSome[A](a: A): F[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  23. final def recoverEitherFromNonFatal[A, AA >: A, B, BB >: B](fab: => F[Either[A, B]])(handleError: PartialFunction[Throwable, Either[AA, BB]]): F[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  24. final def recoverEitherFromNonFatalWith[A, AA >: A, B, BB >: B](fab: => F[Either[A, B]])(handleError: PartialFunction[Throwable, F[Either[AA, BB]]]): F[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  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()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from CanRecover[F]

Inherited from CanHandleError[F]

Inherited from CanCatch[F]

Inherited from FxCtor[F]

Inherited from AnyRef

Inherited from Any

Ungrouped