Accessor

scala.collection.parallel.ParIterableLike.Accessor
protected trait Accessor[R, Tp] extends StrictSplitterCheckTask[R, Tp]

Standard accessor task that iterates over the elements of the collection.

Type parameters

R

type of the result of this method (R for result).

Tp

the representation type of the task at hand.

Attributes

Graph
Supertypes
trait Task[R, Tp]
class Object
trait Matchable
class Any
Known subtypes
trait Transformer[R, Tp]
class Copy[U, That]
trait ParSeqLikeTransformer[R, Tp]
trait ParSeqLikeAccessor[R, Tp]

Members list

Type members

Inherited types

type Result = R

Attributes

Inherited from:
Task

Value members

Concrete methods

Decides whether or not this task should be split further.

Decides whether or not this task should be split further.

Attributes

def split: Seq[Task[R, Tp]]

Splits this task into a list of smaller tasks.

Splits this task into a list of smaller tasks.

Attributes

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
Any

Inherited methods

Attributes

Inherited from:
Task
def repr: Tp

Attributes

Inherited from:
Task

Attributes

Inherited from:
StrictSplitterCheckTask

Inherited and Abstract methods

def leaf(result: Option[R]): 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

Inherited from:
Task

Inherited fields

Attributes

Inherited from:
Task

Inherited and Abstract fields

var result: R

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

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

Attributes

Inherited from:
Task