Empty

zio.prelude.ParSeq.Empty
case object Empty extends ParSeq[Unit, Nothing]

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait ParSeq[Unit, Nothing]
class Object
trait Matchable
class Any
Show all
Self type
Empty.type

Members list

Type members

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Singleton

Attributes

Inherited from:
Singleton

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
type MirroredMonoType = Singleton.this.type

The mirrored *-type

The mirrored *-type

Attributes

Inherited from:
Singleton
type MirroredType = Singleton.this.type

Attributes

Inherited from:
Singleton

Value members

Inherited methods

final def &&[Z1 = Unit, A1](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.

Attributes

Inherited from:
ParSeq
final def *>[Z1 = Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, B]

A symbolic alias for zipRight.

A symbolic alias for zipRight.

Attributes

Inherited from:
ParSeq
final def ++[Z1 = Unit, A1](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.

Attributes

Inherited from:
ParSeq
final def <*[Z1 = Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, Nothing]

A symbolic alias for zipLeft.

A symbolic alias for zipLeft.

Attributes

Inherited from:
ParSeq
final def <*>[Z1 = Unit, B](that: ParSeq[Z1, B]): ParSeq[Z1, (Nothing, B)]

A symbolic alias for zip.

A symbolic alias for zip.

Attributes

Inherited from:
ParSeq
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.

Attributes

Inherited from:
ParSeq
final def first(implicit ev: Unit <:< Nothing): Nothing

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.

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.

Attributes

Inherited from:
ParSeq
final def flatMap[Z1 = 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.

Attributes

Inherited from:
ParSeq
final def flatten[Z1 = 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.

Attributes

Inherited from:
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.

Attributes

Inherited from:
ParSeq
final def forEach[F[_] : Covariant, B](f: Nothing => F[B]): 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.

Attributes

Inherited from:
ParSeq

Create a new instance of type T with elements taken from product p.

Create a new instance of type T with elements taken from product p.

Attributes

Inherited from:
Singleton
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.

Attributes

Inherited from:
ParSeq

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
final def toCause: Cause[Nothing]

Attributes

Inherited from:
ParSeq
final def toNonEmptyMultiSet(implicit ev: Unit <:< Nothing): NonEmptyMultiSet[Nothing]

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.

Attributes

Inherited from:
ParSeq
final def zip[Z1 = 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.

Attributes

Inherited from:
ParSeq
final def zipLeft[Z1 = 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.

Attributes

Inherited from:
ParSeq
final def zipRight[Z1 = 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.

Attributes

Inherited from:
ParSeq
final def zipWith[Z1 = 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.

Attributes

Inherited from:
ParSeq