object Empty extends ParSeq[Unit, Nothing] with Product with Serializable
- Alphabetic
- By Inheritance
- Empty
- Serializable
- Serializable
- Product
- Equals
- ParSeq
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
&&[Z1 >: Unit <: Unit, A1 >: Nothing](that: ParSeq[Z1, A1]): ParSeq[Z1, A1]
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
-
final
def
*>[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, B]
A symbolic alias for
zipRight.A symbolic alias for
zipRight.- Definition Classes
- ParSeq
-
final
def
++[Z1 >: Unit <: Unit, A1 >: Nothing](that: ParSeq[Z1, A1]): ParSeq[Z1, A1]
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
-
final
def
<*[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, Nothing]
A symbolic alias for
zipLeft.A symbolic alias for
zipLeft.- Definition Classes
- ParSeq
-
final
def
<*>[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, (Nothing, B)]
A symbolic alias for
zip.A symbolic alias for
zip.- Definition Classes
- ParSeq
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
as[B](b: B): ParSeq[Unit, B]
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
first(implicit ev: <:<[Unit, Nothing]): Nothing
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()
-
final
def
flatMap[Z1 >: Unit <: Unit, B](f: (Nothing) ⇒ ParSeq[Z1, B]): ParSeq[Z1, B]
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
-
final
def
flatten[Z1 >: Unit <: Unit, B](implicit ev: <:<[Nothing, ParSeq[Z1, B]]): ParSeq[Z1, B]
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
-
final
def
fold[B](emptyCase: B, singleCase: (Nothing) ⇒ B)(thenCase: (B, B) ⇒ B, bothCase: (B, B) ⇒ B): B
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
-
final
def
forEach[F[+_], B](f: (Nothing) ⇒ F[B])(implicit arg0: IdentityBoth[F], arg1: Covariant[F]): F[ParSeq[Unit, B]]
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
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
map[B](f: (Nothing) ⇒ B): ParSeq[Unit, B]
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
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
toCause: Cause[Nothing]
- Definition Classes
- ParSeq
-
final
def
toNonEmptyMultiSet(implicit ev: <:<[Unit, Nothing]): NonEmptyMultiSet[Nothing]
Converts this collection of events to a
NonEmptyMultiSetof events, discarding information about the sequential structure of events.Converts this collection of events to a
NonEmptyMultiSetof events, discarding information about the sequential structure of events.- Definition Classes
- ParSeq
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
zip[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, (Nothing, B)]
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
-
final
def
zipLeft[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, Nothing]
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
-
final
def
zipRight[Z1 >: Unit <: Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, B]
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
-
final
def
zipWith[Z1 >: Unit <: Unit, B, C](that: ParSeq[Z1, B])(f: (Nothing, B) ⇒ C): ParSeq[Z1, C]
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