Packages

  • package root
    Definition Classes
    root
  • package izumi
    Definition Classes
    root
  • package functional
    Definition Classes
    izumi
  • package bio

    Current hierarchy (use http://www.nomnoml.com/ to render, rendered: https://izumi.7mind.io/bio/media/bio-relationship-hierarchy.svg)

    Current hierarchy (use http://www.nomnoml.com/ to render, rendered: https://izumi.7mind.io/bio/media/bio-relationship-hierarchy.svg)

    [Functor2]<--[Bifunctor2]
    [Bifunctor2]<--[ApplicativeError2]
    [Functor2]<--[Applicative2]
    [Applicative2]<--[Guarantee2]
    [Applicative2]<--[Monad2]
    [Guarantee2]<--[ApplicativeError2]
    [ApplicativeError2]<--[Error2]
    [Monad2]<--[Error2]
    [Error2]<--[Bracket2]
    [Bracket2]<--[Panic2]
    [Panic2]<--[IO2]
    [IO2]<--[Async2]
    
    [Monad2]<--[Parallel2]
    [Parallel2]<--[Concurrent2]
    [Concurrent2]<--[Async2]
    
    [Error2]<--[Temporal2]

    Auxiliary algebras:

    [cats.effect.*]<:--[CatsConversions]
    
    [Fork2]<:--[Fiber2]
    
    [BlockingIO2]
    
    [Primitives2]
    
    [Primitives2]<:--[Ref2]
    [Primitives2]<:--[Semaphore2]
    [Primitives2]<:--[Promise2]
    
    [PrimitivesM2]
    [PrimitivesM2]<:--[RefM2]
    [PrimitivesM2]<:--[Mutex2]
    
    [Entropy1]<:--[Entropy2]
    [Clock1]<:--[Clock2]
    
    [UnsafeRun2]

    Raw inheritance hierarchy:

    [Functor2]<--[Applicative2]
    [Applicative2]<--[Guarantee2]
    [Applicative2]<--[Monad2]
    [Guarantee2]<--[ApplicativeError2]
    [Bifunctor2]<--[ApplicativeError2]
    [ApplicativeError2]<--[Error2]
    [Monad2]<--[Error2]
    [Error2]<--[Bracket2]
    [Bracket2]<--[Panic2]
    [Panic2]<--[IO2]
    
    [Parallel2]<--[Concurrent2]
    [Concurrent2]<--[Async2]
    [IO2]<--[Async2]
    
    [Temporal2]

    current hierarchy roots:

    bifunctor:

    • Functor3
    • Bifunctor3
    • Parallel3
    • Temporal3

    standalone:

    • Fork3
    • BlockingIO3
    • Primitives3
    • PrimitivesM3
    Definition Classes
    functional
  • object CatsConversions
    Definition Classes
    bio
  • BIOCatsApplicative
  • BIOCatsAsync
  • BIOCatsBifunctor
  • BIOCatsClock
  • BIOCatsClockImpl
  • BIOCatsConcurrent
  • BIOCatsConcurrentImpl
  • BIOCatsFunctor
  • BIOCatsMonad
  • BIOCatsMonadCancel
  • BIOCatsMonadCancelImpl
  • BIOCatsMonadError
  • BIOCatsParallel
  • BIOCatsSpawn
  • BIOCatsSpawnImpl
  • BIOCatsSync
  • BIOCatsSyncImpl
  • BIOCatsTemporal
  • BIOCatsTemporalImpl

trait BIOCatsSpawn[F[+_, +_]] extends GenSpawn[[β$28$]F[Throwable, β$28$], Throwable]

Linear Supertypes
GenSpawn[[β$28$]F[Throwable, β$28$], Throwable], Unique[[β$28$]F[Throwable, β$28$]], MonadCancel[[β$28$]F[Throwable, β$28$], Throwable], MonadError[[β$28$]F[Throwable, β$28$], Throwable], Monad[[β$28$]F[Throwable, β$28$]], FlatMap[[β$28$]F[Throwable, β$28$]], FlatMapArityFunctions[[β$28$]F[Throwable, β$28$]], ApplicativeError[[β$28$]F[Throwable, β$28$], Throwable], Applicative[[β$28$]F[Throwable, β$28$]], InvariantMonoidal[[β$28$]F[Throwable, β$28$]], Apply[[β$28$]F[Throwable, β$28$]], ApplyArityFunctions[[β$28$]F[Throwable, β$28$]], InvariantSemigroupal[[β$28$]F[Throwable, β$28$]], Semigroupal[[β$28$]F[Throwable, β$28$]], Functor[[β$28$]F[Throwable, β$28$]], Invariant[[β$28$]F[Throwable, β$28$]], Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BIOCatsSpawn
  2. GenSpawn
  3. Unique
  4. MonadCancel
  5. MonadError
  6. Monad
  7. FlatMap
  8. FlatMapArityFunctions
  9. ApplicativeError
  10. Applicative
  11. InvariantMonoidal
  12. Apply
  13. ApplyArityFunctions
  14. InvariantSemigroupal
  15. Semigroupal
  16. Functor
  17. Invariant
  18. Serializable
  19. AnyRef
  20. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val F: Monad2[F]
  2. abstract val FC: Concurrent2[F]
  3. abstract val Fork: Fork2[F]
  4. abstract def canceled: F[Throwable, Unit]
    Definition Classes
    MonadCancel
  5. abstract def flatMap[A, B](fa: F[Throwable, A])(f: (A) => F[Throwable, B]): F[Throwable, B]
    Definition Classes
    FlatMap
  6. abstract def forceR[A, B](fa: F[Throwable, A])(fb: F[Throwable, B]): F[Throwable, B]
    Definition Classes
    MonadCancel
  7. abstract def handleErrorWith[A](fa: F[Throwable, A])(f: (Throwable) => F[Throwable, A]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  8. abstract def onCancel[A](fa: F[Throwable, A], fin: F[Throwable, Unit]): F[Throwable, A]
    Definition Classes
    MonadCancel
  9. abstract def pure[A](x: A): F[Throwable, A]
    Definition Classes
    Applicative
  10. abstract def raiseError[A](e: Throwable): F[Throwable, A]
    Definition Classes
    ApplicativeError
  11. abstract def tailRecM[A, B](a: A)(f: (A) => F[Throwable, Either[A, B]]): F[Throwable, B]
    Definition Classes
    FlatMap
  12. abstract def uncancelable[A](body: (Poll[[β$28$]F[Throwable, β$28$]]) => F[Throwable, A]): F[Throwable, A]
    Definition Classes
    MonadCancel
  13. abstract def unique: F[Throwable, Token]
    Definition Classes
    Unique

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def *>[A, B](fa: F[Throwable, A])(fb: F[Throwable, B]): F[Throwable, B]
    Definition Classes
    Apply
    Annotations
    @inline()
  4. final def <*[A, B](fa: F[Throwable, A])(fb: F[Throwable, B]): F[Throwable, A]
    Definition Classes
    Apply
    Annotations
    @inline()
  5. final def <*>[A, B](ff: F[Throwable, (A) => B])(fa: F[Throwable, A]): F[Throwable, B]
    Definition Classes
    Apply
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def adaptError[A](fa: F[Throwable, A])(pf: PartialFunction[Throwable, Throwable]): F[Throwable, A]
    Definition Classes
    MonadError → ApplicativeError
  8. def ap[A, B](ff: F[Throwable, (A) => B])(fa: F[Throwable, A]): F[Throwable, B]
    Definition Classes
    FlatMap → Apply
  9. def ap10[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  10. def ap11[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  11. def ap12[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  12. def ap13[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  13. def ap14[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  14. def ap15[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  15. def ap16[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  16. def ap17[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  17. def ap18[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  18. def ap19[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  19. def ap2[A, B, Z](ff: F[Throwable, (A, B) => Z])(fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, Z]
    Definition Classes
    FlatMap → Apply
  20. def ap20[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  21. def ap21[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  22. def ap22[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20], f21: F[Throwable, A21]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  23. def ap3[A0, A1, A2, Z](f: F[Throwable, (A0, A1, A2) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  24. def ap4[A0, A1, A2, A3, Z](f: F[Throwable, (A0, A1, A2, A3) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  25. def ap5[A0, A1, A2, A3, A4, Z](f: F[Throwable, (A0, A1, A2, A3, A4) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  26. def ap6[A0, A1, A2, A3, A4, A5, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  27. def ap7[A0, A1, A2, A3, A4, A5, A6, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  28. def ap8[A0, A1, A2, A3, A4, A5, A6, A7, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  29. def ap9[A0, A1, A2, A3, A4, A5, A6, A7, A8, Z](f: F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8) => Z])(f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8]): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  30. def applicative: Applicative[[β$28$]F[Throwable, β$28$]]
    Definition Classes
    GenSpawn → Unique
  31. def as[A, B](fa: F[Throwable, A], b: B): F[Throwable, B]
    Definition Classes
    Functor
  32. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  33. def attempt[A](fa: F[Throwable, A]): F[Throwable, Either[Throwable, A]]
    Definition Classes
    ApplicativeError
  34. def attemptNarrow[EE <: Throwable, A](fa: F[Throwable, A])(implicit tag: ClassTag[EE], ev: <:<[EE, Throwable]): F[Throwable, Either[EE, A]]
    Definition Classes
    ApplicativeError
  35. def attemptT[A](fa: F[Throwable, A]): EitherT[[β$28$]F[Throwable, β$28$], Throwable, A]
    Definition Classes
    ApplicativeError
  36. def attemptTap[A, B](fa: F[Throwable, A])(f: (Either[Throwable, A]) => F[Throwable, B]): F[Throwable, A]
    Definition Classes
    MonadError
  37. def background[A](fa: F[Throwable, A]): Resource[[β$34$]F[Throwable, β$34$], F[Throwable, Outcome[[β$35$]F[Throwable, β$35$], Throwable, A]]]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  38. def both[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, (A, B)]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  39. def bothOutcome[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, (Outcome[[β$38$]F[Throwable, β$38$], Throwable, A], Outcome[[β$39$]F[Throwable, β$39$], Throwable, B])]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  40. def bracket[A, B](acquire: F[Throwable, A])(use: (A) => F[Throwable, B])(release: (A) => F[Throwable, Unit]): F[Throwable, B]
    Definition Classes
    MonadCancel
  41. def bracketCase[A, B](acquire: F[Throwable, A])(use: (A) => F[Throwable, B])(release: (A, Outcome[[β$28$]F[Throwable, β$28$], Throwable, B]) => F[Throwable, Unit]): F[Throwable, B]
    Definition Classes
    MonadCancel
  42. def bracketFull[A, B](acquire: (Poll[[β$28$]F[Throwable, β$28$]]) => F[Throwable, A])(use: (A) => F[Throwable, B])(release: (A, Outcome[[β$28$]F[Throwable, β$28$], Throwable, B]) => F[Throwable, Unit]): F[Throwable, B]
    Definition Classes
    MonadCancel
  43. def cancelable[A](fa: F[Throwable, A], fin: F[Throwable, Unit]): F[Throwable, A]
    Definition Classes
    GenSpawn
  44. def catchNonFatal[A](a: => A)(implicit ev: <:<[Throwable, Throwable]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  45. def catchNonFatalEval[A](a: Eval[A])(implicit ev: <:<[Throwable, Throwable]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  46. def catchOnly[T >: Null <: Throwable]: CatchOnlyPartiallyApplied[T, [β$28$]F[Throwable, β$28$], Throwable]
    Definition Classes
    ApplicativeError
  47. def cede: F[Throwable, Unit]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  48. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  49. def compose[G[_]](implicit arg0: Applicative[G]): Applicative[[α]F[Throwable, G[α]]]
    Definition Classes
    Applicative
  50. def compose[G[_]](implicit arg0: Apply[G]): Apply[[α]F[Throwable, G[α]]]
    Definition Classes
    Apply
  51. def compose[G[_]](implicit arg0: Functor[G]): Functor[[α]F[Throwable, G[α]]]
    Definition Classes
    Functor
  52. def compose[G[_]](implicit arg0: Invariant[G]): Invariant[[α]F[Throwable, G[α]]]
    Definition Classes
    Invariant
  53. def composeApply[G[_]](implicit arg0: Apply[G]): InvariantSemigroupal[[α]F[Throwable, G[α]]]
    Definition Classes
    InvariantSemigroupal
  54. def composeContravariant[G[_]](implicit arg0: Contravariant[G]): Contravariant[[α]F[Throwable, G[α]]]
    Definition Classes
    Functor → Invariant
  55. def composeContravariantMonoidal[G[_]](implicit arg0: ContravariantMonoidal[G]): ContravariantMonoidal[[α]F[Throwable, G[α]]]
    Definition Classes
    Applicative
  56. def composeFunctor[G[_]](implicit arg0: Functor[G]): Invariant[[α]F[Throwable, G[α]]]
    Definition Classes
    Invariant
  57. def ensure[A](fa: F[Throwable, A])(error: => Throwable)(predicate: (A) => Boolean): F[Throwable, A]
    Definition Classes
    MonadError
  58. def ensureOr[A](fa: F[Throwable, A])(error: (A) => Throwable)(predicate: (A) => Boolean): F[Throwable, A]
    Definition Classes
    MonadError
  59. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  60. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  61. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  62. def flatMap10[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  63. def flatMap11[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  64. def flatMap12[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  65. def flatMap13[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  66. def flatMap14[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  67. def flatMap15[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  68. def flatMap16[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  69. def flatMap17[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  70. def flatMap18[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  71. def flatMap19[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  72. def flatMap2[A0, A1, Z](f0: F[Throwable, A0], f1: F[Throwable, A1])(f: (A0, A1) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  73. def flatMap20[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  74. def flatMap21[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  75. def flatMap22[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20], f21: F[Throwable, A21])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  76. def flatMap3[A0, A1, A2, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2])(f: (A0, A1, A2) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  77. def flatMap4[A0, A1, A2, A3, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3])(f: (A0, A1, A2, A3) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  78. def flatMap5[A0, A1, A2, A3, A4, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4])(f: (A0, A1, A2, A3, A4) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  79. def flatMap6[A0, A1, A2, A3, A4, A5, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5])(f: (A0, A1, A2, A3, A4, A5) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  80. def flatMap7[A0, A1, A2, A3, A4, A5, A6, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6])(f: (A0, A1, A2, A3, A4, A5, A6) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  81. def flatMap8[A0, A1, A2, A3, A4, A5, A6, A7, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7])(f: (A0, A1, A2, A3, A4, A5, A6, A7) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  82. def flatMap9[A0, A1, A2, A3, A4, A5, A6, A7, A8, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8) => F[Throwable, Z]): F[Throwable, Z]
    Definition Classes
    FlatMapArityFunctions
  83. def flatTap[A, B](fa: F[Throwable, A])(f: (A) => F[Throwable, B]): F[Throwable, A]
    Definition Classes
    FlatMap
  84. def flatten[A](ffa: F[Throwable, F[Throwable, A]]): F[Throwable, A]
    Definition Classes
    FlatMap
  85. final def fmap[A, B](fa: F[Throwable, A])(f: (A) => B): F[Throwable, B]
    Definition Classes
    Functor
  86. def foreverM[A, B](fa: F[Throwable, A]): F[Throwable, B]
    Definition Classes
    FlatMap
  87. def fproduct[A, B](fa: F[Throwable, A])(f: (A) => B): F[Throwable, (A, B)]
    Definition Classes
    Functor
  88. def fproductLeft[A, B](fa: F[Throwable, A])(f: (A) => B): F[Throwable, (B, A)]
    Definition Classes
    Functor
  89. def fromEither[A](x: Either[Throwable, A]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  90. def fromOption[A](oa: Option[A], ifEmpty: => Throwable): F[Throwable, A]
    Definition Classes
    ApplicativeError
  91. def fromTry[A](t: Try[A])(implicit ev: <:<[Throwable, Throwable]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  92. def fromValidated[A](x: Validated[Throwable, A]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  93. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  94. def guarantee[A](fa: F[Throwable, A], fin: F[Throwable, Unit]): F[Throwable, A]
    Definition Classes
    MonadCancel
  95. def guaranteeCase[A](fa: F[Throwable, A])(fin: (Outcome[[β$28$]F[Throwable, β$28$], Throwable, A]) => F[Throwable, Unit]): F[Throwable, A]
    Definition Classes
    MonadCancel
  96. def handleError[A](fa: F[Throwable, A])(f: (Throwable) => A): F[Throwable, A]
    Definition Classes
    ApplicativeError
  97. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  98. def ifElseM[A](branches: (F[Throwable, Boolean], F[Throwable, A])*)(els: F[Throwable, A]): F[Throwable, A]
    Definition Classes
    Monad
  99. def ifF[A](fb: F[Throwable, Boolean])(ifTrue: => A, ifFalse: => A): F[Throwable, A]
    Definition Classes
    Functor
  100. def ifM[B](fa: F[Throwable, Boolean])(ifTrue: => F[Throwable, B], ifFalse: => F[Throwable, B]): F[Throwable, B]
    Definition Classes
    FlatMap
  101. def imap[A, B](fa: F[Throwable, A])(f: (A) => B)(g: (B) => A): F[Throwable, B]
    Definition Classes
    Functor → Invariant
  102. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  103. def iterateForeverM[A, B](a: A)(f: (A) => F[Throwable, A]): F[Throwable, B]
    Definition Classes
    FlatMap
  104. def iterateUntil[A](f: F[Throwable, A])(p: (A) => Boolean): F[Throwable, A]
    Definition Classes
    Monad
  105. def iterateUntilM[A](init: A)(f: (A) => F[Throwable, A])(p: (A) => Boolean): F[Throwable, A]
    Definition Classes
    Monad
  106. def iterateWhile[A](f: F[Throwable, A])(p: (A) => Boolean): F[Throwable, A]
    Definition Classes
    Monad
  107. def iterateWhileM[A](init: A)(f: (A) => F[Throwable, A])(p: (A) => Boolean): F[Throwable, A]
    Definition Classes
    Monad
  108. def lift[A, B](f: (A) => B): (F[Throwable, A]) => F[Throwable, B]
    Definition Classes
    Functor
  109. def map[A, B](fa: F[Throwable, A])(f: (A) => B): F[Throwable, B]
    Definition Classes
    Monad → Applicative → Functor
  110. def map10[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  111. def map11[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  112. def map12[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  113. def map13[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  114. def map14[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  115. def map15[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  116. def map16[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  117. def map17[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  118. def map18[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  119. def map19[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  120. def map2[A, B, Z](fa: F[Throwable, A], fb: F[Throwable, B])(f: (A, B) => Z): F[Throwable, Z]
    Definition Classes
    FlatMap → Apply
  121. def map20[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  122. def map21[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  123. def map22[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20], f21: F[Throwable, A21])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  124. def map2Eval[A, B, Z](fa: F[Throwable, A], fb: Eval[F[Throwable, B]])(f: (A, B) => Z): Eval[F[Throwable, Z]]
    Definition Classes
    FlatMap → Apply
  125. def map3[A0, A1, A2, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2])(f: (A0, A1, A2) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  126. def map4[A0, A1, A2, A3, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3])(f: (A0, A1, A2, A3) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  127. def map5[A0, A1, A2, A3, A4, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4])(f: (A0, A1, A2, A3, A4) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  128. def map6[A0, A1, A2, A3, A4, A5, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5])(f: (A0, A1, A2, A3, A4, A5) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  129. def map7[A0, A1, A2, A3, A4, A5, A6, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6])(f: (A0, A1, A2, A3, A4, A5, A6) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  130. def map8[A0, A1, A2, A3, A4, A5, A6, A7, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7])(f: (A0, A1, A2, A3, A4, A5, A6, A7) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  131. def map9[A0, A1, A2, A3, A4, A5, A6, A7, A8, Z](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8) => Z): F[Throwable, Z]
    Definition Classes
    ApplyArityFunctions
  132. def mproduct[A, B](fa: F[Throwable, A])(f: (A) => F[Throwable, B]): F[Throwable, (A, B)]
    Definition Classes
    FlatMap
  133. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  134. def never[A]: F[Throwable, A]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  135. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  136. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  137. def onError[A](fa: F[Throwable, A])(pf: PartialFunction[Throwable, F[Throwable, Unit]]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  138. def point[A](a: A): F[Throwable, A]
    Definition Classes
    InvariantMonoidal
  139. def product[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, (A, B)]
    Definition Classes
    FlatMap → Apply → Semigroupal
  140. def productL[A, B](fa: F[Throwable, A])(fb: F[Throwable, B]): F[Throwable, A]
    Definition Classes
    FlatMap → Apply
  141. def productLEval[A, B](fa: F[Throwable, A])(fb: Eval[F[Throwable, B]]): F[Throwable, A]
    Definition Classes
    FlatMap
  142. def productR[A, B](fa: F[Throwable, A])(fb: F[Throwable, B]): F[Throwable, B]
    Definition Classes
    FlatMap → Apply
  143. def productREval[A, B](fa: F[Throwable, A])(fb: Eval[F[Throwable, B]]): F[Throwable, B]
    Definition Classes
    FlatMap
  144. def race[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, Either[A, B]]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  145. def raceOutcome[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, Either[Outcome[[β$36$]F[Throwable, β$36$], Throwable, A], Outcome[[β$37$]F[Throwable, β$37$], Throwable, B]]]
    Definition Classes
    BIOCatsSpawn → GenSpawn
  146. final def racePair[A, B](fa: F[Throwable, A], fb: F[Throwable, B]): F[Throwable, Either[(Outcome[[β$30$]F[Throwable, β$30$], Throwable, A], Fiber[[β$31$]F[Throwable, β$31$], Throwable, B]), (Fiber[[β$32$]F[Throwable, β$32$], Throwable, A], Outcome[[β$33$]F[Throwable, β$33$], Throwable, B])]]
    Definition Classes
    BIOCatsSpawn → GenSpawn
    Annotations
    @inline()
  147. def raiseUnless(cond: Boolean)(e: => Throwable): F[Throwable, Unit]
    Definition Classes
    ApplicativeError
  148. def raiseWhen(cond: Boolean)(e: => Throwable): F[Throwable, Unit]
    Definition Classes
    ApplicativeError
  149. def recover[A](fa: F[Throwable, A])(pf: PartialFunction[Throwable, A]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  150. def recoverWith[A](fa: F[Throwable, A])(pf: PartialFunction[Throwable, F[Throwable, A]]): F[Throwable, A]
    Definition Classes
    ApplicativeError
  151. def redeem[A, B](fa: F[Throwable, A])(recover: (Throwable) => B, f: (A) => B): F[Throwable, B]
    Definition Classes
    ApplicativeError
  152. def redeemWith[A, B](fa: F[Throwable, A])(recover: (Throwable) => F[Throwable, B], bind: (A) => F[Throwable, B]): F[Throwable, B]
    Definition Classes
    MonadError
  153. def replicateA[A](n: Int, fa: F[Throwable, A]): F[Throwable, List[A]]
    Definition Classes
    Applicative
  154. def replicateA_[A](n: Int, fa: F[Throwable, A]): F[Throwable, Unit]
    Definition Classes
    Applicative
  155. def rethrow[A, EE <: Throwable](fa: F[Throwable, Either[EE, A]]): F[Throwable, A]
    Definition Classes
    MonadError
  156. final def rootCancelScope: CancelScope
    Definition Classes
    GenSpawn → MonadCancel
  157. final def start[A](fa: F[Throwable, A]): F[Throwable, Fiber[[β$29$]F[Throwable, β$29$], Throwable, A]]
    Definition Classes
    BIOCatsSpawn → GenSpawn
    Annotations
    @inline()
  158. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  159. def toString(): String
    Definition Classes
    AnyRef → Any
  160. def tuple10[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)]
    Definition Classes
    ApplyArityFunctions
  161. def tuple11[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)]
    Definition Classes
    ApplyArityFunctions
  162. def tuple12[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)]
    Definition Classes
    ApplyArityFunctions
  163. def tuple13[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)]
    Definition Classes
    ApplyArityFunctions
  164. def tuple14[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)]
    Definition Classes
    ApplyArityFunctions
  165. def tuple15[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)]
    Definition Classes
    ApplyArityFunctions
  166. def tuple16[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15)]
    Definition Classes
    ApplyArityFunctions
  167. def tuple17[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16)]
    Definition Classes
    ApplyArityFunctions
  168. def tuple18[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17)]
    Definition Classes
    ApplyArityFunctions
  169. def tuple19[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18)]
    Definition Classes
    ApplyArityFunctions
  170. def tuple2[A, B](f1: F[Throwable, A], f2: F[Throwable, B]): F[Throwable, (A, B)]
    Definition Classes
    ApplyArityFunctions
  171. def tuple20[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19)]
    Definition Classes
    ApplyArityFunctions
  172. def tuple21[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20)]
    Definition Classes
    ApplyArityFunctions
  173. def tuple22[A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8], f9: F[Throwable, A9], f10: F[Throwable, A10], f11: F[Throwable, A11], f12: F[Throwable, A12], f13: F[Throwable, A13], f14: F[Throwable, A14], f15: F[Throwable, A15], f16: F[Throwable, A16], f17: F[Throwable, A17], f18: F[Throwable, A18], f19: F[Throwable, A19], f20: F[Throwable, A20], f21: F[Throwable, A21]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21)]
    Definition Classes
    ApplyArityFunctions
  174. def tuple3[A0, A1, A2](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2]): F[Throwable, (A0, A1, A2)]
    Definition Classes
    ApplyArityFunctions
  175. def tuple4[A0, A1, A2, A3](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3]): F[Throwable, (A0, A1, A2, A3)]
    Definition Classes
    ApplyArityFunctions
  176. def tuple5[A0, A1, A2, A3, A4](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4]): F[Throwable, (A0, A1, A2, A3, A4)]
    Definition Classes
    ApplyArityFunctions
  177. def tuple6[A0, A1, A2, A3, A4, A5](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5]): F[Throwable, (A0, A1, A2, A3, A4, A5)]
    Definition Classes
    ApplyArityFunctions
  178. def tuple7[A0, A1, A2, A3, A4, A5, A6](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6)]
    Definition Classes
    ApplyArityFunctions
  179. def tuple8[A0, A1, A2, A3, A4, A5, A6, A7](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7)]
    Definition Classes
    ApplyArityFunctions
  180. def tuple9[A0, A1, A2, A3, A4, A5, A6, A7, A8](f0: F[Throwable, A0], f1: F[Throwable, A1], f2: F[Throwable, A2], f3: F[Throwable, A3], f4: F[Throwable, A4], f5: F[Throwable, A5], f6: F[Throwable, A6], f7: F[Throwable, A7], f8: F[Throwable, A8]): F[Throwable, (A0, A1, A2, A3, A4, A5, A6, A7, A8)]
    Definition Classes
    ApplyArityFunctions
  181. def tupleLeft[A, B](fa: F[Throwable, A], b: B): F[Throwable, (B, A)]
    Definition Classes
    Functor
  182. def tupleRight[A, B](fa: F[Throwable, A], b: B): F[Throwable, (A, B)]
    Definition Classes
    Functor
  183. def unit: F[Throwable, Unit]
    Definition Classes
    Applicative → InvariantMonoidal
  184. def unlessA[A](cond: Boolean)(f: => F[Throwable, A]): F[Throwable, Unit]
    Definition Classes
    Applicative
  185. def untilDefinedM[A](foa: F[Throwable, Option[A]]): F[Throwable, A]
    Definition Classes
    FlatMap
  186. def untilM[G[_], A](f: F[Throwable, A])(cond: => F[Throwable, Boolean])(implicit G: Alternative[G]): F[Throwable, G[A]]
    Definition Classes
    Monad
  187. def untilM_[A](f: F[Throwable, A])(cond: => F[Throwable, Boolean]): F[Throwable, Unit]
    Definition Classes
    Monad
  188. def unzip[A, B](fab: F[Throwable, (A, B)]): (F[Throwable, A], F[Throwable, B])
    Definition Classes
    Functor
  189. def void[A](fa: F[Throwable, A]): F[Throwable, Unit]
    Definition Classes
    Functor
  190. def voidError(fu: F[Throwable, Unit]): F[Throwable, Unit]
    Definition Classes
    ApplicativeError
  191. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  192. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  193. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  194. def whenA[A](cond: Boolean)(f: => F[Throwable, A]): F[Throwable, Unit]
    Definition Classes
    Applicative
  195. def whileM[G[_], A](p: F[Throwable, Boolean])(body: => F[Throwable, A])(implicit G: Alternative[G]): F[Throwable, G[A]]
    Definition Classes
    Monad
  196. def whileM_[A](p: F[Throwable, Boolean])(body: => F[Throwable, A]): F[Throwable, Unit]
    Definition Classes
    Monad
  197. def widen[A, B >: A](fa: F[Throwable, A]): F[Throwable, B]
    Definition Classes
    Functor

Deprecated Value Members

  1. def ifA[A](fcond: F[Throwable, Boolean])(ifTrue: F[Throwable, A], ifFalse: F[Throwable, A]): F[Throwable, A]
    Definition Classes
    Apply
    Annotations
    @deprecated
    Deprecated

    (Since version 2.6.2) Dangerous method, use ifM (a flatMap) or ifF (a map) instead

Inherited from GenSpawn[[β$28$]F[Throwable, β$28$], Throwable]

Inherited from Unique[[β$28$]F[Throwable, β$28$]]

Inherited from MonadCancel[[β$28$]F[Throwable, β$28$], Throwable]

Inherited from MonadError[[β$28$]F[Throwable, β$28$], Throwable]

Inherited from Monad[[β$28$]F[Throwable, β$28$]]

Inherited from FlatMap[[β$28$]F[Throwable, β$28$]]

Inherited from FlatMapArityFunctions[[β$28$]F[Throwable, β$28$]]

Inherited from ApplicativeError[[β$28$]F[Throwable, β$28$], Throwable]

Inherited from Applicative[[β$28$]F[Throwable, β$28$]]

Inherited from InvariantMonoidal[[β$28$]F[Throwable, β$28$]]

Inherited from Apply[[β$28$]F[Throwable, β$28$]]

Inherited from ApplyArityFunctions[[β$28$]F[Throwable, β$28$]]

Inherited from InvariantSemigroupal[[β$28$]F[Throwable, β$28$]]

Inherited from Semigroupal[[β$28$]F[Throwable, β$28$]]

Inherited from Functor[[β$28$]F[Throwable, β$28$]]

Inherited from Invariant[[β$28$]F[Throwable, β$28$]]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped