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. 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
  2. implicit def ZPureCovariant[W, S1, S2, R, E]: Covariant[[+A]ZPure[W, S1, S2, R, E, A]]

    The Covariant instance for ZPure.

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

    The IdentityBoth instance for ZPure.

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

    The IdentityFlatten instance for ZPure.

  5. def access[R]: AccessPartiallyApplied[R]
  6. def accessM[R]: AccessMPartiallyApplied[R]
  7. def attempt[S, A](a: => A): ZPure[Nothing, S, S, Any, Throwable, A]

    Constructs a computation, catching any Throwable that is thrown.

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

  9. def environment[S, R]: ZPure[Nothing, S, S, R, Nothing, R]
  10. def fail[E](e: E): ZPure[Nothing, Any, Nothing, Any, E, Nothing]
  11. def first[S, A]: ZPure[Nothing, S, S, (A, Any), Nothing, A]

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

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

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

    Constructs a computation from an Either.

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

    Constructs a computation from a function.

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

    Constructs a computation from an Option.

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

    Constructs a Validation from a predicate, failing with None.

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

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

    Constructs a computation from a scala.util.Try.

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

    Constructs a computation that returns the initial state unchanged.

  20. def halt[E](cause: Cause[E]): ZPure[Nothing, Any, Nothing, Any, E, Nothing]
  21. def log[S, W](w: W): ZPure[W, S, S, Any, Nothing, Unit]
  22. 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.

  23. 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
  24. 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
  25. 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
  26. 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
  27. 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
  28. 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
  29. 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
  30. 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
  31. 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
  32. 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
  33. 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
  34. 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
  35. 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
  36. 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
  37. 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
  38. 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
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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.

  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. def modify[S1, S2, A](f: (S1) => (A, S2)): ZPure[Nothing, S1, S2, Any, Nothing, A]

    Constructs a computation from the specified modify function.

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

  66. def second[S, B]: ZPure[Nothing, S, S, (Any, B), Nothing, B]

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

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

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

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

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

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

  71. 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
  72. 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
  73. 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
  74. 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
  75. 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
  76. 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
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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.

  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. 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
  112. def unit[S]: ZPure[Nothing, S, S, Any, Nothing, Unit]

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

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

    Constructs a computation from the specified update function.

  114. object CanFilter
  115. object FlagType