|
org.codehaus.gpars | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovyx.gpars.extra166y.AbstractParallelAnyArray.DPap groovyx.gpars.extra166y.ParallelDoubleArrayWithLongMapping
public abstract class ParallelDoubleArrayWithLongMapping extends DPap
A prefix view of ParallelDoubleArray that causes operations to apply to mappings of elements, not to the elements themselves. Instances of this class may be constructed only via prefix methods of ParallelDoubleArray or its other prefix classes.
Constructor Summary | |
ParallelDoubleArrayWithLongMapping(ForkJoinPool ex, int origin, int fence, double[] array)
|
Method Summary | |
---|---|
ParallelLongArray
|
all()
Returns a new ParallelLongArray holding mappings. |
void
|
apply(LongProcedure procedure)
Applies the given procedure. |
long
|
max()
Returns the maximum element, or Long.MIN_VALUE if empty. |
long
|
max(LongComparator comparator)
Returns the maximum element, or Long.MIN_VALUE if empty. |
long
|
min()
Returns the minimum element, or Long.MAX_VALUE if empty. |
long
|
min(LongComparator comparator)
Returns the minimum element, or Long.MAX_VALUE if empty. |
long
|
reduce(LongReducer reducer, long base)
Returns reduction of mapped elements. |
java.lang.Iterable
|
sequentially()
Returns an Iterable view to sequentially step through mapped elements also obeying bound and filter constraints, without performing computations to evaluate them in parallel. |
long
|
sum()
Returns the sum of elements. |
SummaryStatistics
|
summary(LongComparator comparator)
Returns summary statistics. |
SummaryStatistics
|
summary()
Returns summary statistics, using natural comparator. |
ParallelDoubleArrayWithMapping
|
withIndexedMapping(IntAndLongToObject mapper)
Returns an operation prefix that causes a method to operate on mappings of this array using the given mapper that accepts as arguments an element's current index and value (as mapped by preceding mappings, if any), and produces a new value. |
ParallelDoubleArrayWithDoubleMapping
|
withIndexedMapping(IntAndLongToDouble mapper)
Returns an operation prefix that causes a method to operate on mappings of this array using the given mapper that accepts as arguments an element's current index and value (as mapped by preceding mappings, if any), and produces a new value. |
ParallelDoubleArrayWithLongMapping
|
withIndexedMapping(IntAndLongToLong mapper)
Returns an operation prefix that causes a method to operate on mappings of this array using the given mapper that accepts as arguments an element's current index and value (as mapped by preceding mappings, if any), and produces a new value. |
ParallelDoubleArrayWithDoubleMapping
|
withMapping(LongToDouble op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op. |
ParallelDoubleArrayWithLongMapping
|
withMapping(LongOp op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op. |
ParallelDoubleArrayWithMapping
|
withMapping(LongToObject op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op. |
ParallelDoubleArrayWithMapping
|
withMapping(LongAndObjectToObject combiner, ParallelArrayWithMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithMapping
|
withMapping(LongAndDoubleToObject combiner, ParallelDoubleArrayWithDoubleMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithMapping
|
withMapping(LongAndLongToObject combiner, ParallelLongArrayWithLongMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithDoubleMapping
|
withMapping(LongAndObjectToDouble combiner, ParallelArrayWithMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithDoubleMapping
|
withMapping(LongAndDoubleToDouble combiner, ParallelDoubleArrayWithDoubleMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithDoubleMapping
|
withMapping(LongAndLongToDouble combiner, ParallelLongArrayWithLongMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithLongMapping
|
withMapping(LongAndObjectToLong combiner, ParallelArrayWithMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithLongMapping
|
withMapping(LongAndDoubleToLong combiner, ParallelDoubleArrayWithDoubleMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
ParallelDoubleArrayWithLongMapping
|
withMapping(BinaryLongOp combiner, ParallelLongArrayWithLongMapping other)
Returns an operation prefix that causes a method to operate on binary mappings of this array and the other array. |
Constructor Detail |
---|
ParallelDoubleArrayWithLongMapping(ForkJoinPool ex, int origin, int fence, double[] array)
Method Detail |
---|
public ParallelLongArray all()
public void apply(LongProcedure procedure)
procedure
- the procedure
public long max()
public long max(LongComparator comparator)
comparator
- the comparator
public long min()
public long min(LongComparator comparator)
comparator
- the comparator
public long reduce(LongReducer reducer, long base)
reducer
- the reducerbase
- the result for an empty array
public java.lang.Iterable sequentially()
public long sum()
public SummaryStatistics summary(LongComparator comparator)
comparator
- the comparator to use for
locating minimum and maximum elements
public SummaryStatistics summary()
public ParallelDoubleArrayWithMapping withIndexedMapping(IntAndLongToObject mapper)
mapper
- the mapper
public ParallelDoubleArrayWithDoubleMapping withIndexedMapping(IntAndLongToDouble mapper)
mapper
- the mapper
public ParallelDoubleArrayWithLongMapping withIndexedMapping(IntAndLongToLong mapper)
mapper
- the mapper
public ParallelDoubleArrayWithDoubleMapping withMapping(LongToDouble op)
op
- the op
public ParallelDoubleArrayWithLongMapping withMapping(LongOp op)
op
- the op
public ParallelDoubleArrayWithMapping withMapping(LongToObject op)
op
- the op
public ParallelDoubleArrayWithMapping withMapping(LongAndObjectToObject combiner, ParallelArrayWithMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithMapping withMapping(LongAndDoubleToObject combiner, ParallelDoubleArrayWithDoubleMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithMapping withMapping(LongAndLongToObject combiner, ParallelLongArrayWithLongMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithDoubleMapping withMapping(LongAndObjectToDouble combiner, ParallelArrayWithMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithDoubleMapping withMapping(LongAndDoubleToDouble combiner, ParallelDoubleArrayWithDoubleMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithDoubleMapping withMapping(LongAndLongToDouble combiner, ParallelLongArrayWithLongMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithLongMapping withMapping(LongAndObjectToLong combiner, ParallelArrayWithMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithLongMapping withMapping(LongAndDoubleToLong combiner, ParallelDoubleArrayWithDoubleMapping other)
combiner
- the combinerother
- the other array
public ParallelDoubleArrayWithLongMapping withMapping(BinaryLongOp combiner, ParallelLongArrayWithLongMapping other)
combiner
- the combinerother
- the other array
Copyright © 2008–2013 Václav Pech. All Rights Reserved.