ApplicativeOps

izumi.functional.bio.syntax.Syntax2$.ApplicativeOps
class ApplicativeOps[F[_, _], +E, +A](val r: F[E, A])(implicit val F: Applicative2[F]) extends FunctorOps[F, E, A]

Attributes

Graph
Supertypes
class FunctorOps[F, E, A]
class Object
trait Matchable
class Any
Known subtypes
class GuaranteeOps[F, E, A]
class ApplicativeErrorOps[F, E, A]
class ErrorOps[F, E, A]
class BracketOps[F, E, A]
class PanicOps[F, E, A]
class IOOps[F, E, A]
class AsyncOps[F, E, A]
class MonadOps[F, E, A]

Members list

Concise view

Value members

Concrete methods

final def *>[E1 >: E, B](f0: => F[E1, B]): F[E1, B]

execute two operations in order, return result of second operation

execute two operations in order, return result of second operation

Attributes

final def <*[E1 >: E, B](f0: => F[E1, B]): F[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

final def forever: F[E, Nothing]
final def map2[E2 >: E, B, C](r2: => F[E2, B])(f: (A, B) => C): F[E2, C]

execute two operations in order, map their results

execute two operations in order, map their results

Attributes

final def zip[E2 >: E, B, C](r2: => F[E2, B]): F[E2, (A, B)]

execute two operations in order, return result of both operations

execute two operations in order, return result of both operations

Attributes

Inherited methods

final def as[B](b: => B): F[E, B]

Attributes

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

Attributes

Inherited from:
FunctorOps
final def map[B](f: A => B): F[E, B]

Attributes

Inherited from:
FunctorOps
final def void: F[E, Unit]

Attributes

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

Attributes

Inherited from:
FunctorOps