c

mouse

FEitherOps

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

Source
feither.scala
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. def asIn[B](b: => B)(implicit F: Functor[F]): F[Either[L, B]]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def bimapIn[A, B](left: (L) => A, right: (R) => B)(implicit F: Functor[F]): F[Either[A, B]]
  7. def cata[A](left: (L) => A, right: (R) => A)(implicit F: Functor[F]): F[A]
  8. def cataF[A](left: (L) => F[A], right: (R) => F[A])(implicit F: FlatMap[F]): F[A]
  9. def flatMapF[A >: L, B](f: (R) => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  10. def flatMapIn[A >: L, B](f: (R) => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  11. def foldF[A](left: (L) => F[A])(right: (R) => F[A])(implicit F: FlatMap[F]): F[A]
  12. def foldIn[A](left: (L) => A)(right: (R) => A)(implicit F: Functor[F]): F[A]
  13. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  14. def getOrElseF[A >: R](right: => F[A])(implicit F: Monad[F]): F[A]
  15. def getOrElseIn[A >: R](right: => A)(implicit F: Functor[F]): F[A]
  16. def getOrRaise[E](e: => E)(implicit F: MonadError[F, _ >: E]): F[R]
  17. def getOrRaiseMsg(msg: => String)(implicit F: MonadThrow[F]): F[R]
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def leftAsIn[B](b: => B)(implicit F: Functor[F]): F[Either[B, R]]
  20. def leftFlatMapF[A, B >: R](f: (L) => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  21. def leftFlatMapIn[A, B >: R](f: (L) => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  22. def leftMapIn[A](f: (L) => A)(implicit F: Functor[F]): F[Either[A, R]]
  23. def leftTraverseF[G[_], A](f: (L) => G[A])(implicit F: Traverse[F], G: Applicative[G]): G[F[Either[A, R]]]
  24. def leftTraverseIn[G[_], A](f: (L) => G[A])(implicit F: Functor[F], G: Applicative[G]): F[G[Either[A, R]]]
  25. def leftVoidIn(implicit F: Functor[F]): F[Either[Unit, R]]
  26. def leftWidenIn[A >: L](implicit F: Functor[F]): F[Either[A, R]]
  27. def liftEitherT: EitherT[F, L, R]
  28. def mapIn[A](f: (R) => A)(implicit F: Functor[F]): F[Either[L, A]]
  29. def mergeIn[A >: L](implicit ev: <:<[R, A], F: Functor[F]): F[A]
  30. def orElseF[A >: L, B >: R](f: => F[Either[A, B]])(implicit F: Monad[F]): F[Either[A, B]]
  31. def orElseIn[A >: L, B >: R](f: => Either[A, B])(implicit F: Functor[F]): F[Either[A, B]]
  32. def swapIn(implicit F: Functor[F]): F[Either[R, L]]
  33. def toOptionIn(implicit F: Functor[F]): F[Option[R]]
  34. def toString(): String
    Definition Classes
    Any
  35. def traverseF[G[_], A](f: (R) => G[A])(implicit arg0: Applicative[G], F: Traverse[F]): G[F[Either[L, A]]]
  36. def traverseIn[G[_], A](f: (R) => G[A])(implicit arg0: Applicative[G], F: Functor[F]): F[G[Either[L, A]]]
  37. def voidIn(implicit F: Functor[F]): F[Either[L, Unit]]
  38. def widenIn[A >: R](implicit F: Functor[F]): F[Either[L, A]]

Inherited from AnyVal

Inherited from Any

Ungrouped