Class

zio.prelude.ParSeq

Both

Related Doc: package ParSeq

Permalink

final case class Both[+Z <: Unit, +A](left: ParSeq[Z, A], right: ParSeq[Z, A]) extends ParSeq[Z, A] with Product with Serializable

Self Type
Both[Z, A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Both
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ParSeq
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Both(left: ParSeq[Z, A], right: ParSeq[Z, A])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def &&[Z1 >: Z <: Unit, A1 >: A](that: ParSeq[Z1, A1]): ParSeq[Z1, A1]

    Permalink

    Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events in parallel with that collection of events.

    Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events in parallel with that collection of events.

    Definition Classes
    ParSeq
  4. final def *>[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, B]

    Permalink

    A symbolic alias for zipRight.

    A symbolic alias for zipRight.

    Definition Classes
    ParSeq
  5. final def ++[Z1 >: Z <: Unit, A1 >: A](that: ParSeq[Z1, A1]): ParSeq[Z1, A1]

    Permalink

    Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events followed by that collection of events.

    Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events followed by that collection of events.

    Definition Classes
    ParSeq
  6. final def <*[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, A]

    Permalink

    A symbolic alias for zipLeft.

    A symbolic alias for zipLeft.

    Definition Classes
    ParSeq
  7. final def <*>[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, (A, B)]

    Permalink

    A symbolic alias for zip.

    A symbolic alias for zip.

    Definition Classes
    ParSeq
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. final def as[B](b: B): ParSeq[Z, B]

    Permalink

    Maps the events in this collection of events to the specified constant value.

    Maps the events in this collection of events to the specified constant value.

    Definition Classes
    ParSeq
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    Both → Equals → AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def first(implicit ev: <:<[Z, Nothing]): A

    Permalink

    Returns the first event in this collection of events.

    Returns the first event in this collection of events. If multiple events occur in parallel and before any other events then any of these events may be returned.

    Definition Classes
    ParSeq
    Annotations
    @tailrec()
  16. final def flatMap[Z1 >: Z <: Unit, B](f: (A) ⇒ ParSeq[Z1, B]): ParSeq[Z1, B]

    Permalink

    Constructs a new collection of events for each event in this collection of events, collecting them back into a single collection of events.

    Constructs a new collection of events for each event in this collection of events, collecting them back into a single collection of events.

    Definition Classes
    ParSeq
  17. final def flatten[Z1 >: Z <: Unit, B](implicit ev: <:<[A, ParSeq[Z1, B]]): ParSeq[Z1, B]

    Permalink

    Flattens a collection of collections of events into a single collection of events.

    Flattens a collection of collections of events into a single collection of events.

    Definition Classes
    ParSeq
  18. final def fold[B](emptyCase: B, singleCase: (A) ⇒ B)(thenCase: (B, B) ⇒ B, bothCase: (B, B) ⇒ B): B

    Permalink

    Folds over the events in this collection of events using the specified functions.

    Folds over the events in this collection of events using the specified functions.

    Definition Classes
    ParSeq
  19. final def forEach[F[+_], B](f: (A) ⇒ F[B])(implicit arg0: IdentityBoth[F], arg1: Covariant[F]): F[ParSeq[Z, B]]

    Permalink

    Performs the specified effectual function for each event in this collection of events, collecting them back into a single collection of events.

    Performs the specified effectual function for each event in this collection of events, collecting them back into a single collection of events.

    Definition Classes
    ParSeq
  20. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  23. val left: ParSeq[Z, A]

    Permalink
  24. final def map[B](f: (A) ⇒ B): ParSeq[Z, B]

    Permalink

    Transforms the type of events in this collection of events with the specified function.

    Transforms the type of events in this collection of events with the specified function.

    Definition Classes
    ParSeq
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  28. val right: ParSeq[Z, A]

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

    Permalink
    Definition Classes
    AnyRef
  30. final def toCause: Cause[A]

    Permalink
    Definition Classes
    ParSeq
  31. final def toNonEmptyMultiSet(implicit ev: <:<[Z, Nothing]): NonEmptyMultiSet[A]

    Permalink

    Converts this collection of events to a NonEmptyMultiSet of events, discarding information about the sequential structure of events.

    Converts this collection of events to a NonEmptyMultiSet of events, discarding information about the sequential structure of events.

    Definition Classes
    ParSeq
  32. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def zip[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, (A, B)]

    Permalink

    Combines this collection of events with that collection of events to return the Cartesian product of events, combining the elements into a tuple.

    Combines this collection of events with that collection of events to return the Cartesian product of events, combining the elements into a tuple.

    Definition Classes
    ParSeq
  36. final def zipLeft[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, A]

    Permalink

    Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from this collection.

    Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from this collection.

    Definition Classes
    ParSeq
  37. final def zipRight[Z1 >: Z <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, B]

    Permalink

    Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from that collection.

    Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from that collection.

    Definition Classes
    ParSeq
  38. final def zipWith[Z1 >: Z <: Unit, B, C](that: ParSeq[Z1, B])(f: (A, B) ⇒ C): ParSeq[Z1, C]

    Permalink

    Combines this collection of events with that collection of events to return the Cartesian product of events using the specified function.

    Combines this collection of events with that collection of events to return the Cartesian product of events using the specified function.

    Definition Classes
    ParSeq

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ParSeq[Z, A]

Inherited from AnyRef

Inherited from Any

Ungrouped