Packages

class Map[S] extends Task[Unit, Map[S]]

Source
ParArray.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Map
  2. Task
  3. AnyRef
  4. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Map(f: (T) ⇒ S, targetarr: Array[Any], offset: Int, howmany: Int)

Type Members

  1. type Result = Unit
    Definition Classes
    Task

Value Members

  1. def forwardThrowable(): Unit
    Definition Classes
    Task
  2. def leaf(prev: Option[Unit]): Unit

    Body of the task - non-divisible unit of work done by this task.

    Body of the task - non-divisible unit of work done by this task. Optionally is provided with the result from the previous completed task or None if there was no previous task (or the previous task is uncompleted or unknown).

    Definition Classes
    MapTask
  3. def repr: Map[S]
    Definition Classes
    Task
  4. var result: Unit

    A result that can be accessed once the task is completed.

    A result that can be accessed once the task is completed.

    Definition Classes
    MapTask
  5. def shouldSplitFurther: Boolean

    Decides whether or not this task should be split further.

    Decides whether or not this task should be split further.

    Definition Classes
    MapTask
  6. def split: immutable.List[Map[S]]

    Splits this task into a list of smaller tasks.

    Splits this task into a list of smaller tasks.

    Definition Classes
    MapTask
  7. val throwable: Throwable
    Definition Classes
    Task
    Annotations
    @volatile()
  8. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from Map[S] to CollectionsHaveToParArray[Map[S], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Map[S]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray