trait BIOMonad[F[+_, +_]] extends BIOApplicative[F]

Linear Supertypes
BIOApplicative[F], BIOBifunctor[F], BIOFunctor[F], BIOFunctorInstances, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BIOMonad
  2. BIOApplicative
  3. BIOBifunctor
  4. BIOFunctor
  5. BIOFunctorInstances
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def bimap[E, A, E2, A2](r: F[E, A])(f: (E) => E2, g: (A) => A2): F[E2, A2]
    Definition Classes
    BIOBifunctor
  2. abstract def flatMap[E, A, E2 >: E, B](r: F[E, A])(f: (A) => F[E2, B]): F[E2, B]
  3. abstract def pure[A](a: A): F[Nothing, A]
    Definition Classes
    BIOApplicative
  4. abstract def traverse[E, A, B](l: Iterable[A])(f: (A) => F[E, B]): F[E, List[B]]
    Definition Classes
    BIOApplicative

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *>[E, A, E2 >: E, B](f: F[E, A], next: => F[E2, B]): F[E2, B]

    execute two operations in order, return result of second operation

    execute two operations in order, return result of second operation

    Definition Classes
    BIOMonadBIOApplicative
    Annotations
    @inline()
  4. def <*[E, A, E2 >: E, B](f: F[E, A], next: => F[E2, B]): F[E2, 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

    Definition Classes
    BIOMonadBIOApplicative
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def flatten[E, A](r: F[E, F[E, A]]): F[E, A]
  11. final def forever[E, A](r: F[E, A]): F[E, Nothing]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def leftMap[E, A, E2](r: F[E, A])(f: (E) => E2): F[E2, A]
    Definition Classes
    BIOBifunctor
    Annotations
    @inline()
  16. def map[E, A, B](r: F[E, A])(f: (A) => B): F[E, B]
    Definition Classes
    BIOMonadBIOFunctor
    Annotations
    @inline()
  17. def map2[E, A, E2 >: E, B, C](r1: F[E, A], 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

    Definition Classes
    BIOMonadBIOApplicative
    Annotations
    @inline()
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def sequence[E, A, B](l: Iterable[F[E, A]]): F[E, List[A]]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()
  22. final def sequence_[E](l: Iterable[F[E, Unit]]): F[E, Unit]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def traverse_[E, A, B](l: Iterable[A])(f: (A) => F[E, B]): F[E, Unit]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()
  26. final val unit: F[Nothing, Unit]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()
  27. def void[E, A](r: F[E, A]): F[E, Unit]
    Definition Classes
    BIOFunctor
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def when[E](p: Boolean)(r: F[E, Unit]): F[E, Unit]
    Definition Classes
    BIOApplicative
    Annotations
    @inline()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from BIOApplicative[F]

Inherited from BIOBifunctor[F]

Inherited from BIOFunctor[F]

Inherited from BIOFunctorInstances

Inherited from AnyRef

Inherited from Any

Ungrouped