EitherAsyncShift

class EitherAsyncShift[A, B] extends AsyncShift[Either[A, B]]
trait AsyncShift[Either[A, B]]
class Object
trait Matchable
class Any

Value members

Concrete methods

def exists[F[_]](o: Either[A, B], m: CpsMonad[F])(p: B => F[Boolean]): F[Boolean]
def filterOrElse[F[_], A1 >: A](o: Either[A, B], m: CpsMonad[F])(p: B => F[Boolean], zero: () => F[A1]): F[Either[A1, B]]
def flatMap[F[_], A1 >: A, B1](o: Either[A, B], m: CpsMonad[F])(f: B => F[Either[A1, B1]]): F[Either[A1, B1]]
def fold[F[_], C](o: Either[A, B], m: CpsMonad[F])(fa: A => F[C], fb: B => F[C]): F[C]
def forall[F[_]](o: Either[A, B], m: CpsMonad[F])(p: B => F[Boolean]): F[Boolean]
def foreach[F[_], U](o: Either[A, B], m: CpsMonad[F])(f: B => F[U]): F[Unit]
def getOrElse[F[_], B1 >: B](o: Either[A, B], m: CpsMonad[F])(default: () => F[B1]): F[B1]
def map[F[_], B1](o: Either[A, B], m: CpsMonad[F])(f: B => F[B1]): F[Either[A, B1]]
def orElse[F[_], A1 >: A, B1 >: B](o: Either[A, B], m: CpsMonad[F])(default: () => F[Either[A1, B1]]): F[Either[A1, B1]]