Packages

implicit object tryFx extends FxOfTry

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. tryFx
  2. FxOfTry
  3. TryCanRecover
  4. TryCanHandleError
  5. TryCanCatch
  6. TryFxCtor
  7. Fx
  8. CanRecover
  9. CanHandleError
  10. CanCatch
  11. FxCtor
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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: => Try[B])(f: PartialFunction[Throwable, A]): Try[Either[A, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  6. final def catchNonFatalEither[A, AA >: A, B](fab: => Try[Either[A, B]])(f: PartialFunction[Throwable, AA]): Try[Either[AA, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  7. final def catchNonFatalThrowable[A](fa: => Try[A]): Try[Either[Throwable, A]]
    Definition Classes
    TryCanCatchCanCatch
    Annotations
    @inline()
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. final def effectOf[A](a: => A): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def errorOf[A](throwable: Throwable): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  13. final def flatMapFa[A, B](fa: Try[A])(f: (A) => Try[B]): Try[B]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  14. final def fromEffect[A](fa: => Try[A]): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  15. final def fromEither[A](either: Either[Throwable, A]): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  16. final def fromOption[A](option: Option[A])(orElse: => Throwable): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  17. final def fromTry[A](tryA: Try[A]): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  18. implicit val fxCtor: FxCtor[Try]
    Attributes
    protected
    Definition Classes
    TryCanCatchCanCatch
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def handleEitherNonFatal[A, AA >: A, B, BB >: B](fab: => Try[Either[A, B]])(handleError: (Throwable) => Either[AA, BB]): Try[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  21. final def handleEitherNonFatalWith[A, AA >: A, B, BB >: B](fab: => Try[Either[A, B]])(handleError: (Throwable) => Try[Either[AA, BB]]): Try[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  22. def handleNonFatal[A, AA >: A](fa: => Try[A])(handleError: (Throwable) => AA): Try[AA]
    Definition Classes
    TryCanHandleErrorCanHandleError
    Annotations
    @inline()
  23. def handleNonFatalWith[A, AA >: A](fa: => Try[A])(handleError: (Throwable) => Try[AA]): Try[AA]
    Definition Classes
    TryCanHandleErrorCanHandleError
    Annotations
    @inline()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def pureOf[A](a: A): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  30. def pureOfLeft[B]: PureOfLeft[Try, B]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  31. def pureOfNone[A]: Try[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  32. def pureOfOption[A](a: A): Try[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  33. def pureOfRight[A]: PureOfRight[Try, A]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  34. def pureOfSome[A](a: A): Try[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  35. def pureOrError[A](a: => A): Try[A]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  36. final def recoverEitherFromNonFatal[A, AA >: A, B, BB >: B](fab: => Try[Either[A, B]])(handleError: PartialFunction[Throwable, Either[AA, BB]]): Try[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  37. final def recoverEitherFromNonFatalWith[A, AA >: A, B, BB >: B](fab: => Try[Either[A, B]])(handleError: PartialFunction[Throwable, Try[Either[AA, BB]]]): Try[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  38. def recoverFromNonFatal[A, AA >: A](fa: => Try[A])(handleError: PartialFunction[Throwable, AA]): Try[AA]
    Definition Classes
    TryCanRecoverCanRecover
    Annotations
    @SuppressWarnings() @inline()
  39. def recoverFromNonFatalWith[A, AA >: A](fa: => Try[A])(handleError: PartialFunction[Throwable, Try[AA]]): Try[AA]
    Definition Classes
    TryCanRecoverCanRecover
    Annotations
    @inline()
  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. final def unitOf: Try[Unit]
    Definition Classes
    TryFxCtorFxCtor
    Annotations
    @inline()
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. 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 FxOfTry

Inherited from TryCanRecover

Inherited from TryCanHandleError

Inherited from TryCanCatch

Inherited from TryFxCtor

Inherited from Fx[Try]

Inherited from CanRecover[Try]

Inherited from CanHandleError[Try]

Inherited from CanCatch[Try]

Inherited from FxCtor[Try]

Inherited from AnyRef

Inherited from Any

Ungrouped