Copy

scala.collection.parallel.ParIterableLike.Copy
protected class Copy[U >: T, That](cfactory: CombinerFactory[U, That], val pit: IterableSplitter[T]) extends Transformer[Combiner[U, That], Copy[U, That]]

Attributes

Graph
Supertypes
trait Transformer[Combiner[U, That], Copy[U, That]]
trait Accessor[Combiner[U, That], Copy[U, That]]
trait StrictSplitterCheckTask[Combiner[U, That], Copy[U, That]]
trait Task[Combiner[U, That], Copy[U, That]]
class Object
trait Matchable
class Any
Show all

Members list

Type members

Inherited types

type Result = Combiner[U, That]

Attributes

Inherited from:
Task

Value members

Concrete methods

def leaf(prev: Option[Combiner[U, That]]): Unit

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).

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).

Attributes

override def merge(that: Copy[U, That]): Unit

Read of results of that task and merge them into results of this one.

Read of results of that task and merge them into results of this one.

Attributes

Definition Classes

Inherited methods

Attributes

Inherited from:
Task
def repr: Copy[U, That]

Attributes

Inherited from:
Task

Attributes

Inherited from:
StrictSplitterCheckTask

Decides whether or not this task should be split further.

Decides whether or not this task should be split further.

Attributes

Inherited from:
Accessor
def split: Seq[Task[Combiner[U, That], Copy[U, That]]]

Splits this task into a list of smaller tasks.

Splits this task into a list of smaller tasks.

Attributes

Inherited from:
Accessor
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Accessor -> Any
Inherited from:
Accessor

Concrete fields

var result: Combiner[U, That]

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

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

Attributes

Inherited fields

Attributes

Inherited from:
Task