Object/Trait

zio.prelude.fx

ZPure

Related Docs: trait ZPure | package fx

Permalink

object ZPure extends ZPureLowPriorityImplicits with ZPureArities

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZPure
  2. ZPureArities
  3. ZPureLowPriorityImplicits
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class AccessPartiallyApplied[R] extends AnyVal

    Permalink
  2. final class AccessZPurePartiallyApplied[R] extends AnyVal

    Permalink
  3. abstract class CanFilter[+E] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  4. sealed trait FlagType extends AnyRef

    Permalink
  5. implicit final class ZPureRefineToOrDieOps[W, S1, S2, R, E <: Throwable, A] extends AnyRef

    Permalink
  6. implicit final class ZPureWithFilterOps[W, S1, S2, R, E, A] extends AnyVal

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object CanFilter

    Permalink
  5. object FlagType

    Permalink
  6. implicit def ZPureCommutativeBoth[W, S, R, E]: CommutativeBoth[[+A]ZPure[W, S, S, R, E, A]]

    Permalink

    The CommutativeBoth instance for ZPure.

    The CommutativeBoth instance for ZPure.

    Definition Classes
    ZPureLowPriorityImplicits
  7. implicit def ZPureCovariant[W, S1, S2, R, E]: Covariant[[+A]ZPure[W, S1, S2, R, E, A]]

    Permalink

    The Covariant instance for ZPure.

  8. implicit def ZPureIdentityBoth[W, S, R, E]: IdentityBoth[[+A]ZPure[W, S, S, R, E, A]]

    Permalink

    The IdentityBoth instance for ZPure.

  9. implicit def ZPureIdentityFlatten[W, S, R, E]: IdentityFlatten[[+A]ZPure[W, S, S, R, E, A]]

    Permalink

    The IdentityFlatten instance for ZPure.

  10. def access[R]: AccessPartiallyApplied[R]

    Permalink
  11. def accessZPure[R]: AccessZPurePartiallyApplied[R]

    Permalink
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def attempt[S, A](a: ⇒ A): ZPure[Nothing, S, S, Any, Throwable, A]

    Permalink

    Constructs a computation, catching any Throwable that is thrown.

  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def collectAll[F[+_], W, S, R, E, A](fa: F[ZPure[W, S, S, R, E, A]])(implicit arg0: ForEach[F]): ZPure[W, S, S, R, E, F[A]]

    Permalink

    Combines a collection of computations into a single computation that passes the updated state from each computation to the next and collects the results.

  16. def environment[S, R]: ZPure[Nothing, S, S, R, Nothing, R]

    Permalink
  17. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  19. def fail[E](e: E): ZPure[Nothing, Any, Nothing, Any, E, Nothing]

    Permalink
  20. def failCause[E](cause: Cause[E]): ZPure[Nothing, Any, Nothing, Any, E, Nothing]

    Permalink
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def first[S, A]: ZPure[Nothing, S, S, (A, Any), Nothing, A]

    Permalink

    Constructs a computation that extracts the first element of a tuple.

  23. def forEach[F[+_], W, S, R, E, A, B](fa: F[A])(f: (A) ⇒ ZPure[W, S, S, R, E, B])(implicit arg0: ForEach[F]): ZPure[W, S, S, R, E, F[B]]

    Permalink

    Maps each element of a collection to a computation and combines them all into a single computation that passes the updated state from each computation to the next and collects the results.

  24. def fromEither[S, L, R](either: Either[L, R]): ZPure[Nothing, S, S, Any, L, R]

    Permalink

    Constructs a computation from an Either.

  25. def fromFunction[S, R, A](f: (R) ⇒ A): ZPure[Nothing, S, S, R, Nothing, A]

    Permalink

    Constructs a computation from a function.

  26. def fromOption[S, A](option: Option[A]): ZPure[Nothing, S, S, Any, Unit, A]

    Permalink

    Constructs a computation from an Option.

  27. def fromPredicate[A](value: A)(f: (A) ⇒ Boolean): Validation[None.type, A]

    Permalink

    Constructs a Validation from a predicate, failing with None.

  28. def fromPredicateWith[E, A](error: ⇒ E)(value: A)(f: (A) ⇒ Boolean): Validation[E, A]

    Permalink

    Constructs a Validation from a predicate, failing with the error provided.

  29. def fromTry[S, A](t: Try[A]): ZPure[Nothing, S, S, Any, Throwable, A]

    Permalink

    Constructs a computation from a scala.util.Try.

  30. def get[S]: ZPure[Nothing, S, S, Any, Nothing, S]

    Permalink

    Constructs a computation that returns the initial state unchanged.

  31. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  32. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. def log[S, W](w: W): ZPure[W, S, S, Any, Nothing, Unit]

    Permalink
  35. def mapN[W, S, R, E, A, B, C](left: ZPure[W, S, S, R, E, A], right: ZPure[W, S, S, R, E, B])(f: (A, B) ⇒ C): ZPure[W, S, S, R, E, C]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

  36. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20], zPure22: ZPure[W, S, S, R, E, A21])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  37. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  38. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  39. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  40. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  41. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  42. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  43. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  44. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  45. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  46. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  47. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  48. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  49. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  50. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7])(f: (A0, A1, A2, A3, A4, A5, A6, A7) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  51. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6])(f: (A0, A1, A2, A3, A4, A5, A6) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  52. def mapN[W, S, R, E, A0, A1, A2, A3, A4, A5, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5])(f: (A0, A1, A2, A3, A4, A5) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  53. def mapN[W, S, R, E, A0, A1, A2, A3, A4, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4])(f: (A0, A1, A2, A3, A4) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  54. def mapN[W, S, R, E, A0, A1, A2, A3, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3])(f: (A0, A1, A2, A3) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  55. def mapN[W, S, R, E, A0, A1, A2, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2])(f: (A0, A1, A2) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  56. def mapParN[W, S, R, E, A, B, C](left: ZPure[W, S, S, R, E, A], right: ZPure[W, S, S, R, E, B])(f: (A, B) ⇒ C): ZPure[W, S, S, R, E, C]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

  57. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20], zPure22: ZPure[W, S, S, R, E, A21])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  58. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  59. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  60. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  61. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  62. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  63. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  64. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  65. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  66. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  67. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  68. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  69. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  70. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8])(f: (A0, A1, A2, A3, A4, A5, A6, A7, A8) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  71. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7])(f: (A0, A1, A2, A3, A4, A5, A6, A7) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  72. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6])(f: (A0, A1, A2, A3, A4, A5, A6) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  73. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, A5, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5])(f: (A0, A1, A2, A3, A4, A5) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  74. def mapParN[W, S, R, E, A0, A1, A2, A3, A4, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4])(f: (A0, A1, A2, A3, A4) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  75. def mapParN[W, S, R, E, A0, A1, A2, A3, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3])(f: (A0, A1, A2, A3) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  76. def mapParN[W, S, R, E, A0, A1, A2, B](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2])(f: (A0, A1, A2) ⇒ B): ZPure[W, S, S, R, E, B]

    Permalink

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values using the function f, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  77. def modify[S1, S2, A](f: (S1) ⇒ (A, S2)): ZPure[Nothing, S1, S2, Any, Nothing, A]

    Permalink

    Constructs a computation from the specified modify function.

  78. def modifyEither[S1, S2, E, A](f: (S1) ⇒ Either[E, (A, S2)]): ZPure[Nothing, S1, S2, Any, E, A]

    Permalink

    Constructs a computation that may fail from the specified modify function.

  79. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  80. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  81. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  82. def second[S, B]: ZPure[Nothing, S, S, (Any, B), Nothing, B]

    Permalink

    Constructs a computation that extracts the second element of a tuple.

  83. def set[S](s: S): ZPure[Nothing, Any, S, Any, Nothing, Unit]

    Permalink

    Constructs a computation that sets the state to the specified value.

  84. def succeed[S, A](a: A): ZPure[Nothing, S, S, Any, Nothing, A]

    Permalink

    Constructs a computation that always succeeds with the specified value, passing the state through unchanged.

  85. def suspend[W, S1, S2, R, E, A](pure: ⇒ ZPure[W, S1, S2, R, E, A]): ZPure[W, S1, S2, R, E, A]

    Permalink

    Returns a lazily constructed computation, whose construction may itself require effects.

  86. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  87. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  88. def tupled[W, S, R, E, A, B](left: ZPure[W, S, S, R, E, A], right: ZPure[W, S, S, R, E, B]): ZPure[W, S, S, R, E, (A, B)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

  89. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20], zPure22: ZPure[W, S, S, R, E, A21]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  90. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  91. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  92. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  93. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  94. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  95. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  96. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  97. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  98. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  99. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  100. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  101. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  102. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  103. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  104. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5, A6](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  105. def tupled[W, S, R, E, A0, A1, A2, A3, A4, A5](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  106. def tupled[W, S, R, E, A0, A1, A2, A3, A4](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  107. def tupled[W, S, R, E, A0, A1, A2, A3](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3]): ZPure[W, S, S, R, E, (A0, A1, A2, A3)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  108. def tupled[W, S, R, E, A0, A1, A2](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2]): ZPure[W, S, S, R, E, (A0, A1, A2)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the first error if any fail.

    Definition Classes
    ZPureArities
  109. def tupledPar[W, S, R, E, A0, A1](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1]): ZPure[W, S, S, R, E, (A0, A1)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

  110. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20], zPure22: ZPure[W, S, S, R, E, A21]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  111. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19], zPure21: ZPure[W, S, S, R, E, A20]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  112. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18], zPure20: ZPure[W, S, S, R, E, A19]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  113. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17], zPure19: ZPure[W, S, S, R, E, A18]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  114. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16], zPure18: ZPure[W, S, S, R, E, A17]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  115. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15], zPure17: ZPure[W, S, S, R, E, A16]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  116. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14], zPure16: ZPure[W, S, S, R, E, A15]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  117. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13], zPure15: ZPure[W, S, S, R, E, A14]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  118. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12], zPure14: ZPure[W, S, S, R, E, A13]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  119. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11], zPure13: ZPure[W, S, S, R, E, A12]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  120. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10], zPure12: ZPure[W, S, S, R, E, A11]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  121. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9], zPure11: ZPure[W, S, S, R, E, A10]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  122. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8, A9](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8], zPure10: ZPure[W, S, S, R, E, A9]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  123. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7, A8](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7], zPure9: ZPure[W, S, S, R, E, A8]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7, A8)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  124. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6, A7](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6], zPure8: ZPure[W, S, S, R, E, A7]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6, A7)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  125. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5, A6](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5], zPure7: ZPure[W, S, S, R, E, A6]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5, A6)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  126. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4, A5](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4], zPure6: ZPure[W, S, S, R, E, A5]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4, A5)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  127. def tupledPar[W, S, R, E, A0, A1, A2, A3, A4](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3], zPure5: ZPure[W, S, S, R, E, A4]): ZPure[W, S, S, R, E, (A0, A1, A2, A3, A4)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  128. def tupledPar[W, S, R, E, A0, A1, A2, A3](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2], zPure4: ZPure[W, S, S, R, E, A3]): ZPure[W, S, S, R, E, (A0, A1, A2, A3)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  129. def tupledPar[W, S, R, E, A0, A1, A2](zPure1: ZPure[W, S, S, R, E, A0], zPure2: ZPure[W, S, S, R, E, A1], zPure3: ZPure[W, S, S, R, E, A2]): ZPure[W, S, S, R, E, (A0, A1, A2)]

    Permalink

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Combines the results of the specified ZPure values into a tuple, failing with the accumulation of all errors if any fail.

    Definition Classes
    ZPureArities
  130. def unit[S]: ZPure[Nothing, S, S, Any, Nothing, Unit]

    Permalink

    Constructs a computation that always returns the Unit value, passing the state through unchanged.

  131. def update[S1, S2](f: (S1) ⇒ S2): ZPure[Nothing, S1, S2, Any, Nothing, Unit]

    Permalink

    Constructs a computation from the specified update function.

  132. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  133. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  134. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ZPureArities

Inherited from ZPureLowPriorityImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped