Packages

implicit class CommutativeEitherOps[F[_], A] extends AnyRef

Provides infix syntax for commutative operations for invariant types.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommutativeEitherOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CommutativeEitherOps(fa: => F[A])

Value Members

  1. def <|>[B](fb: => F[B])(implicit either: CommutativeEither[F]): F[Either[A, B]]

    A symbolic alias for orElseEitherPar.

  2. def orElseEitherPar[B](fb: => F[B])(implicit either: CommutativeEither[F]): F[Either[A, B]]

    Combines two values of types F[A] and F[B] to produce an F[Either[A, B]].