scala.collection

CustomParallelizable

trait CustomParallelizable[+A, +ParRepr <: Parallel] extends Parallelizable[A, ParRepr]

Source
CustomParallelizable.scala
Linear Supertypes
Parallelizable[A, ParRepr], Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CustomParallelizable
  2. Parallelizable
  3. Any
Implicitly
  1. by StringAdd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Definition Classes
    Any
  2. abstract def seq: TraversableOnce[A]

    Definition Classes
    Parallelizable

Concrete Value Members

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

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

    Definition Classes
    Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to StringAdd[CustomParallelizable[A, ParRepr]] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  4. def ->[B](y: B): (CustomParallelizable[A, ParRepr], B)

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to ArrowAssoc[CustomParallelizable[A, ParRepr]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def ensuring(cond: (CustomParallelizable[A, ParRepr]) ⇒ Boolean, msg: ⇒ Any): CustomParallelizable[A, ParRepr]

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to Ensuring[CustomParallelizable[A, ParRepr]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  8. def ensuring(cond: (CustomParallelizable[A, ParRepr]) ⇒ Boolean): CustomParallelizable[A, ParRepr]

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to Ensuring[CustomParallelizable[A, ParRepr]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: Boolean, msg: ⇒ Any): CustomParallelizable[A, ParRepr]

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to Ensuring[CustomParallelizable[A, ParRepr]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean): CustomParallelizable[A, ParRepr]

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to Ensuring[CustomParallelizable[A, ParRepr]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def equals(arg0: Any): Boolean

    Definition Classes
    Any
  12. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to StringFormat[CustomParallelizable[A, ParRepr]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  13. def hashCode(): Int

    Definition Classes
    Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def par: ParRepr

    Returns a parallel implementation of this collection.

    Returns a parallel implementation of this collection.

    For most collection types, this method creates a new parallel collection by copying all the elements. For these collection, par takes linear time. Mutable collections in this category do not produce a mutable parallel collection that has the same underlying dataset, so changes in one collection will not be reflected in the other one.

    Specific collections (e.g. ParArray or mutable.ParHashMap) override this default behaviour by creating a parallel collection which shares the same underlying dataset. For these collections, par takes constant or sublinear time.

    All parallel collections return a reference to themselves.

    returns

    a parallel implementation of this collection

    Definition Classes
    Parallelizable
  16. def parCombiner: Combiner[A, ParRepr]

    The default par implementation uses the combiner provided by this method to create a new parallel collection.

    The default par implementation uses the combiner provided by this method to create a new parallel collection.

    returns

    a combiner for the parallel collection of type ParRepr

    Attributes
    protected[this]
    Definition Classes
    CustomParallelizableParallelizable
  17. def toString(): String

    Definition Classes
    Any
  18. def [B](y: B): (CustomParallelizable[A, ParRepr], B)

    Implicit information
    This member is added by an implicit conversion from CustomParallelizable[A, ParRepr] to ArrowAssoc[CustomParallelizable[A, ParRepr]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Parallelizable[A, ParRepr]

Inherited from Any

Inherited by implicit conversion StringAdd from CustomParallelizable[A, ParRepr] to StringAdd[CustomParallelizable[A, ParRepr]]

Inherited by implicit conversion StringFormat from CustomParallelizable[A, ParRepr] to StringFormat[CustomParallelizable[A, ParRepr]]

Inherited by implicit conversion Ensuring from CustomParallelizable[A, ParRepr] to Ensuring[CustomParallelizable[A, ParRepr]]

Inherited by implicit conversion ArrowAssoc from CustomParallelizable[A, ParRepr] to ArrowAssoc[CustomParallelizable[A, ParRepr]]

Ungrouped