t

izumi.functional.bio

BIOMonadError3

trait BIOMonadError3[F[-_, +_, +_]] extends BIOError3[F] with BIOMonad3[F]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BIOMonadError3
  2. BIOMonad3
  3. BIOError3
  4. BIOBifunctor3
  5. BIOGuarantee3
  6. BIOApplicative3
  7. BIOFunctor3
  8. BIORoot
  9. PredefinedHelper
  10. DivergenceHelper
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Divergence = Nondivergent
    Definition Classes
    DivergenceHelper
  2. type IsPredefined = NotPredefined
    Definition Classes
    PredefinedHelper

Abstract Value Members

  1. abstract def catchAll[R, E, A, E2](r: F[R, E, A])(f: (E) => F[R, E2, A]): F[R, E2, A]
    Definition Classes
    BIOError3
  2. abstract def catchSome[R, E, A, E1 >: E](r: F[R, E, A])(f: PartialFunction[E, F[R, E1, A]]): F[R, E1, A]
    Definition Classes
    BIOError3
  3. abstract def fail[E](v: => E): F[Any, E, Nothing]
    Definition Classes
    BIOError3
  4. abstract def flatMap[R, E, A, B](r: F[R, E, A])(f: (A) => F[R, E, B]): F[R, E, B]
    Definition Classes
    BIOMonad3
  5. abstract def fromEither[E, V](effect: => Either[E, V]): F[Any, E, V]
    Definition Classes
    BIOError3
  6. abstract def fromOption[E, A](errorOnNone: => E)(effect: => Option[A]): F[Any, E, A]
    Definition Classes
    BIOError3
  7. abstract def fromTry[A](effect: => Try[A]): F[Any, Throwable, A]
    Definition Classes
    BIOError3
  8. abstract def guarantee[R, E, A](f: F[R, E, A], cleanup: F[R, Nothing, Unit]): F[R, E, A]
    Definition Classes
    BIOGuarantee3
  9. abstract def pure[A](a: A): F[Any, Nothing, A]
    Definition Classes
    BIOApplicative3

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *>[R, E, A, B](f: F[R, E, A], next: => F[R, E, B]): F[R, E, B]

    execute two operations in order, return result of second operation

    execute two operations in order, return result of second operation

    Definition Classes
    BIOMonad3BIOApplicative3
  4. def <*[R, E, A, B](f: F[R, E, A], next: => F[R, E, B]): F[R, E, A]

    execute two operations in order, same as *>, but return result of first operation

    execute two operations in order, same as *>, but return result of first operation

    Definition Classes
    BIOMonad3BIOApplicative3
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val InnerF: BIOFunctor3[F]
    Definition Classes
    BIOError3BIOBifunctor3
  7. def as[R, E, A, B](r: F[R, E, A])(v: => B): F[R, E, B]
    Definition Classes
    BIOFunctor3
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def attempt[R, E, A](r: F[R, E, A]): F[R, Nothing, Either[E, A]]
    Definition Classes
    BIOError3
  10. def bimap[R, E, A, E2, B](r: F[R, E, A])(f: (E) => E2, g: (A) => B): F[R, E2, B]
    Definition Classes
    BIOError3BIOBifunctor3
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def flatten[R, E, A](r: F[R, E, F[R, E, A]]): F[R, E, A]
    Definition Classes
    BIOMonad3
  16. def flip[R, E, A](r: F[R, E, A]): F[R, A, E]
  17. final def forever[R, E, A](r: F[R, E, A]): F[R, E, Nothing]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def ifThenElse[R, E, E1, A](cond: F[R, E, Boolean])(ifTrue: F[R, E1, A], ifFalse: F[R, E1, A])(implicit ev: <:<[E, E1]): F[R, E1, A]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  21. final def ifThenElse[R, E, A](cond: Boolean)(ifTrue: F[R, E, A], ifFalse: F[R, E, A]): F[R, E, A]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def leftFlatMap[R, E, A, E2](r: F[R, E, A])(f: (E) => F[R, Nothing, E2]): F[R, E2, A]
  24. def leftMap[R, E, A, E2](r: F[R, E, A])(f: (E) => E2): F[R, E2, A]
    Definition Classes
    BIOBifunctor3
  25. def map[R, E, A, B](r: F[R, E, A])(f: (A) => B): F[R, E, B]
    Definition Classes
    BIOMonad3BIOFunctor3
  26. def map2[R, E, A, B, C](r1: F[R, E, A], r2: => F[R, E, B])(f: (A, B) => C): F[R, E, C]

    execute two operations in order, map their results

    execute two operations in order, map their results

    Definition Classes
    BIOMonad3BIOApplicative3
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def redeem[R, E, A, E2, B](r: F[R, E, A])(err: (E) => F[R, E2, B], succ: (A) => F[R, E2, B]): F[R, E2, B]
  31. def redeemPure[R, E, A, B](r: F[R, E, A])(err: (E) => B, succ: (A) => B): F[R, Nothing, B]
    Definition Classes
    BIOError3
  32. def sequence[R, E, A, B](l: Iterable[F[R, E, A]]): F[R, E, List[A]]
    Definition Classes
    BIOApplicative3
  33. def sequence_[R, E](l: Iterable[F[R, E, Unit]]): F[R, E, Unit]
    Definition Classes
    BIOApplicative3
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def tailRecM[R, E, A, B](a: A)(f: (A) => F[R, E, Either[A, B]]): F[R, E, B]
    Definition Classes
    BIOMonad3
  36. def tap[R, E, A](r: F[R, E, A])(f: (A) => F[R, E, Unit]): F[R, E, A]
    Definition Classes
    BIOMonad3
  37. def tapBoth[R, E, A, E1 >: E](r: F[R, E, A])(err: (E) => F[R, E1, Unit], succ: (A) => F[R, E1, Unit]): F[R, E1, A]
  38. def tapError[R, E, A, E1 >: E](r: F[R, E, A])(f: (E) => F[R, E1, Unit]): F[R, E1, A]
    Definition Classes
    BIOError3
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def traverse[R, E, A, B](o: Option[A])(f: (A) => F[R, E, B]): F[R, E, Option[B]]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  41. def traverse[R, E, A, B](l: Iterable[A])(f: (A) => F[R, E, B]): F[R, E, List[B]]
    Definition Classes
    BIOApplicative3
  42. def traverse_[R, E, A](l: Iterable[A])(f: (A) => F[R, E, Unit]): F[R, E, Unit]
    Definition Classes
    BIOApplicative3
  43. final val unit: F[Any, Nothing, Unit]
    Definition Classes
    BIOApplicative3
  44. final def unless[R, E, E1](cond: F[R, E, Boolean])(ifFalse: F[R, E1, Unit])(implicit ev: <:<[E, E1]): F[R, E1, Unit]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  45. final def unless[R, E](cond: Boolean)(ifFalse: F[R, E, Unit]): F[R, E, Unit]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  46. def void[R, E, A](r: F[R, E, A]): F[R, E, Unit]
    Definition Classes
    BIOFunctor3
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  50. final def when[R, E, E1](cond: F[R, E, Boolean])(ifTrue: F[R, E1, Unit])(implicit ev: <:<[E, E1]): F[R, E1, Unit]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  51. final def when[R, E](cond: Boolean)(ifTrue: F[R, E, Unit]): F[R, E, Unit]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  52. final def widen[R, E, A, A1](r: F[R, E, A])(implicit ev: <:<[A, A1]): F[R, E, A1]
    Definition Classes
    BIOFunctor3
    Annotations
    @inline()
  53. final def widenBoth[R, E, A, E1, A1](r: F[R, E, A])(implicit ev: <:<[E, E1], ev2: <:<[A, A1]): F[R, E1, A1]
    Definition Classes
    BIOBifunctor3
    Annotations
    @inline()
  54. final def widenError[R, E, A, E1](r: F[R, E, A])(implicit ev: <:<[E, E1]): F[R, E1, A]
    Definition Classes
    BIOBifunctor3
    Annotations
    @inline()
  55. def withFilter[R, E, A](r: F[R, E, A])(predicate: (A) => Boolean)(implicit ev: <:<[NoSuchElementException, E]): F[R, E, A]

    for-comprehensions sugar:

    for-comprehensions sugar:

    for {
     (1, 2) <- F.pure((2, 1))
    } yield ()

Inherited from BIOMonad3[F]

Inherited from BIOError3[F]

Inherited from BIOBifunctor3[F]

Inherited from BIOGuarantee3[F]

Inherited from BIOApplicative3[F]

Inherited from BIOFunctor3[F]

Inherited from BIORoot

Inherited from PredefinedHelper

Inherited from DivergenceHelper

Inherited from AnyRef

Inherited from Any

Ungrouped