ApplicativeErrorOps

izumi.functional.bio.syntax.Syntax3$.ApplicativeErrorOps
class ApplicativeErrorOps[FR[_, _, _], -R, +E, +A](val r: FR[R, E, A])(implicit val F: ApplicativeError3[FR]) extends GuaranteeOps[FR, R, E, A]

Attributes

Graph
Supertypes
class GuaranteeOps[FR, R, E, A]
class ApplicativeOps[FR, R, E, A]
class FunctorOps[FR, R, E, A]
class Object
trait Matchable
class Any
Known subtypes
class ErrorOps[FR, R, E, A]
class BracketOps[FR, R, E, A]
class PanicOps[FR, R, E, A]
class IOOps[FR, R, E, A]
class AsyncOps[FR, R, E, A]

Members list

Concise view

Value members

Concrete methods

final def bimap[E2, B](f: E => E2, g: A => B): FR[R, E2, B]
final def leftMap[E2](f: E => E2): FR[R, E2, A]
final def leftMap2[R1 <: R, E2, A1 >: A, E3](r2: => FR[R1, E2, A1])(f: (E, E2) => E3): FR[R1, E3, A1]
final def orElse[R1 <: R, E2, A1 >: A](r2: => FR[R1, E2, A1]): FR[R1, E2, A1]
final def widenBoth[E1 >: E, A1](implicit ev2: A <:< A1): FR[R, E1, A1]
final def widenError[E1 >: E]: FR[R, E1, A]

Inherited methods

final def *>[R1 <: R, E1 >: E, B](f0: => FR[R1, E1, B]): FR[R1, E1, B]

execute two operations in order, return result of second operation

execute two operations in order, return result of second operation

Attributes

Inherited from:
ApplicativeOps
final def <*[R1 <: R, E1 >: E, B](f0: => FR[R1, E1, B]): FR[R1, E1, 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

Attributes

Inherited from:
ApplicativeOps
final def as[B](b: => B): FR[R, E, B]

Attributes

Inherited from:
FunctorOps
final def forever: FR[R, E, Nothing]

Attributes

Inherited from:
ApplicativeOps
final def fromOptionOr[B](valueOnNone: => B)(implicit ev: A <:< Option[B]): FR[R, E, B]

Attributes

Inherited from:
FunctorOps
final def guarantee[R1 <: R](cleanup: FR[R1, Nothing, Unit]): FR[R1, E, A]

Attributes

Inherited from:
GuaranteeOps
final def map[B](f: A => B): FR[R, E, B]

Attributes

Inherited from:
FunctorOps
final def map2[R1 <: R, E1 >: E, B, C](r2: => FR[R1, E1, B])(f: (A, B) => C): FR[R1, E1, C]

execute two operations in order, map their results

execute two operations in order, map their results

Attributes

Inherited from:
ApplicativeOps
final def void: FR[R, E, Unit]

Attributes

Inherited from:
FunctorOps
final def widen[A1](implicit ev: A <:< A1): FR[R, E, A1]

Attributes

Inherited from:
FunctorOps
final def zip[R1 <: R, E1 >: E, B, C](r2: => FR[R1, E1, B]): FR[R1, E1, (A, B)]

execute two operations in order, return result of both operations

execute two operations in order, return result of both operations

Attributes

Inherited from:
ApplicativeOps