c

mouse

FEitherOps

final class FEitherOps[F[_], L, R] extends AnyVal

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

Instance Constructors

  1. new FEitherOps(felr: F[Either[L, R]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def cata[A](left: (L) => A, right: (R) => A)(implicit F: Functor[F]): F[A]
  6. def cataF[A](left: (L) => F[A], right: (R) => F[A])(implicit F: FlatMap[F]): F[A]
  7. def flatMapF[A >: L, B](f: (R) => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  8. def flatMapIn[A >: L, B](f: (R) => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  9. def foldF[A](left: (L) => F[A])(right: (R) => F[A])(implicit F: FlatMap[F]): F[A]
  10. def foldIn[A](left: (L) => A)(right: (R) => A)(implicit F: Functor[F]): F[A]
  11. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  12. def getOrElseF[A >: R](right: => F[A])(implicit F: Monad[F]): F[A]
  13. def getOrElseIn[A >: R](right: => A)(implicit F: Functor[F]): F[A]
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def leftFlatMapF[A, B >: R](f: (L) => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  16. def leftFlatMapIn[A, B >: R](f: (L) => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  17. def leftMapIn[A](f: (L) => A)(implicit F: Functor[F]): F[Either[A, R]]
  18. def leftTraverseF[G[_], A](f: (L) => G[A])(implicit F: Traverse[F], G: Applicative[G]): G[F[Either[A, R]]]
  19. def leftTraverseIn[G[_], A](f: (L) => G[A])(implicit F: Functor[F], G: Applicative[G]): F[G[Either[A, R]]]
  20. def liftEitherT: EitherT[F, L, R]
  21. def mapIn[A](f: (R) => A)(implicit F: Functor[F]): F[Either[L, A]]
  22. def orElseF[A >: L, B >: R](f: => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  23. def orElseIn[A >: L, B >: R](f: => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  24. def toString(): String
    Definition Classes
    Any
  25. def traverseF[G[_], A](f: (R) => G[A])(implicit arg0: Applicative[G], F: Traverse[F]): G[F[Either[L, A]]]
  26. def traverseIn[G[_], A](f: (R) => G[A])(implicit arg0: Applicative[G], F: Functor[F]): F[G[Either[L, A]]]

Inherited from AnyVal

Inherited from Any

Ungrouped