Packages

object ZPure extends ZPureLowPriorityImplicits with ZPureArities

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. Protected

Type Members

  1. final class AccessMPartiallyApplied[R] extends AnyVal
  2. final class AccessPartiallyApplied[R] extends AnyVal
  3. abstract class CanFilter[+E] extends AnyRef
    Annotations
    @implicitNotFound()
  4. sealed trait FlagType extends AnyRef
  5. implicit final class ZPureRefineToOrDieOps[W, S1, S2, R, E <: Throwable, A] extends AnyRef
  6. implicit final class ZPureWithFilterOps[W, S1, S2, R, E, A] extends AnyVal

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def ZPureCommutativeBoth[W, S, R, E]: CommutativeBoth[[+A]ZPure[W, S, S, R, E, A]]

    The CommutativeBoth instance for ZPure.

    The CommutativeBoth instance for ZPure.

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

    The Covariant instance for ZPure.

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

    The IdentityBoth instance for ZPure.

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

    The IdentityFlatten instance for ZPure.

  8. def access[R]: AccessPartiallyApplied[R]
  9. def accessM[R]: AccessMPartiallyApplied[R]
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def attempt[S, A](a: => A): ZPure[Nothing, S, S, Any, Throwable, A]

    Constructs a computation, catching any Throwable that is thrown.

  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. 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]]

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

  14. def environment[S, R]: ZPure[Nothing, S, S, R, Nothing, R]
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def fail[E](e: E): ZPure[Nothing, Any, Nothing, Any, E, Nothing]
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def first[S, A]: ZPure[Nothing, S, S, (A, Any), Nothing, A]

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

  20. 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]]

    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.

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

    Constructs a computation from an Either.

  22. def fromFunction[S, R, A](f: (R) => A): ZPure[Nothing, S, S, R, Nothing, A]

    Constructs a computation from a function.

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

    Constructs a computation from an Option.

  24. def fromPredicate[A](value: A)(f: (A) => Boolean): Validation[None.type, A]

    Constructs a Validation from a predicate, failing with None.

  25. def fromPredicateWith[E, A](error: => E)(value: A)(f: (A) => Boolean): Validation[E, A]

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

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

    Constructs a computation from a scala.util.Try.

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

    Constructs a computation that returns the initial state unchanged.

  28. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def halt[E](cause: Cause[E]): ZPure[Nothing, Any, Nothing, Any, E, Nothing]
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def log[S, W](w: W): ZPure[W, S, S, Any, Nothing, Unit]
  33. 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]

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

  34. 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]

    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
  35. 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]

    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
  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, 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]

    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
  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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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 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]

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

  55. 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]

    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
  56. 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]

    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
  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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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, 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]

    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 modify[S1, S2, A](f: (S1) => (A, S2)): ZPure[Nothing, S1, S2, Any, Nothing, A]

    Constructs a computation from the specified modify function.

  76. def modifyEither[S1, S2, E, A](f: (S1) => Either[E, (A, S2)]): ZPure[Nothing, S1, S2, Any, E, A]

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

  77. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  78. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  79. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  80. def second[S, B]: ZPure[Nothing, S, S, (Any, B), Nothing, B]

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

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

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

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

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

  83. def suspend[W, S1, S2, R, E, A](pure: => ZPure[W, S1, S2, R, E, A]): ZPure[W, S1, S2, R, E, A]

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

  84. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  85. def toString(): String
    Definition Classes
    AnyRef → Any
  86. 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)]

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

  87. 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)]

    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
  88. 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)]

    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
  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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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 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)]

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

  108. 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)]

    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
  109. 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)]

    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
  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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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](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)]

    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 unit[S]: ZPure[Nothing, S, S, Any, Nothing, Unit]

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

  129. def update[S1, S2](f: (S1) => S2): ZPure[Nothing, S1, S2, Any, Nothing, Unit]

    Constructs a computation from the specified update function.

  130. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  131. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  132. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  133. object CanFilter
  134. object FlagType

Inherited from ZPureArities

Inherited from AnyRef

Inherited from Any

Ungrouped