Packages

object ParSeq

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParSeq
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Both[+Z <: Unit, +A](left: ParSeq[Z, A], right: ParSeq[Z, A]) extends ParSeq[Z, A] with Product with Serializable
  2. final case class Single[+A](value: A) extends ParSeq[Nothing, A] with Product with Serializable
  3. final case class Then[+Z <: Unit, +A](left: ParSeq[Z, A], right: ParSeq[Z, A]) extends ParSeq[Z, A] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](a: A): ParSeq[Nothing, A]

    Constructs a new collection of events that contains the specified event.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val empty: ParSeq[Unit, Nothing]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. implicit def parSeqCovariant[Z <: Unit]: Covariant[[+a]ParSeq[Z, a]]

    The Covariant instance for ParSeq.

  18. implicit def parSeqDebug[Z <: Unit, A](implicit arg0: Debug[A]): Debug[ParSeq[Z, A]]

    Derives a Debug[ParSeq[A]] given a Debug[A].

  19. implicit def parSeqForEach[Z <: Unit]: ForEach[[+a]ParSeq[Z, a]]

    The NonEmptyForEach instance for ParSeq.

  20. implicit def parSeqHash[Z <: Unit, A]: Hash[ParSeq[Z, A]]

    The Hash instance for ParSeq.

    The Hash instance for ParSeq. Note that due to limitations of Scala's Set this uses object equality and hash code on the elements.

  21. implicit def parSeqIdentityBoth[Z <: Unit]: IdentityBoth[[+a]ParSeq[Z, a]]

    The IdentityBoth instance for ParSeq.

  22. implicit def parSeqIdentityFlatten[Z <: Unit]: IdentityFlatten[[+a]ParSeq[Z, a]]

    The IdentityFlatten instance for ParSeq.

  23. def single[A](a: A): ParSeq[Nothing, A]

    Constructs a new collection of events that contains the specified event.

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. val unit: ParSeq[Nothing, Unit]

    A collection of events that contains a single event with no information.

  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. case object Empty extends ParSeq[Unit, Nothing] with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped