org.codehaus.gpars

groovyx.gpars.extra166y
[Java] Class ParallelLongArrayWithLongMapping

java.lang.Object
  groovyx.gpars.extra166y.AbstractParallelAnyArray.LPap
      groovyx.gpars.extra166y.ParallelLongArrayWithLongMapping

public abstract class ParallelLongArrayWithLongMapping
extends LPap

A prefix view of ParallelLongArray 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 ParallelLongArray or its other prefix classes.


Constructor Summary
ParallelLongArrayWithLongMapping(ForkJoinPool ex, int origin, int fence, long[] array)

 
Method Summary
ParallelLongArray all()

Returns a new ParallelLongArray holding elements.

void apply(LongProcedure procedure)

Applies the given procedure to elements.

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

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

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

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

ParallelLongArrayWithLongMapping withMapping(LongOp op)

Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.

ParallelLongArrayWithDoubleMapping withMapping(LongToDouble op)

Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.

ParallelLongArrayWithMapping withMapping(LongToObject op)

Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.

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

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

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

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

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

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

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

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

ParallelLongArrayWithLongMapping 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

ParallelLongArrayWithLongMapping

ParallelLongArrayWithLongMapping(ForkJoinPool ex, int origin, int fence, long[] array)


 
Method Detail

all

public ParallelLongArray all()
Returns a new ParallelLongArray holding elements.
Returns:
a new ParallelLongArray holding elements


apply

public void apply(LongProcedure procedure)
Applies the given procedure to elements.
Parameters:
procedure - the procedure


max

public long max()
Returns the maximum element, or Long.MIN_VALUE if empty.
Returns:
maximum element, or Long.MIN_VALUE if empty


max

public long max(LongComparator comparator)
Returns the maximum element, or Long.MIN_VALUE if empty.
Parameters:
comparator - the comparator
Returns:
maximum element, or Long.MIN_VALUE if empty


min

public long min()
Returns the minimum element, or Long.MAX_VALUE if empty.
Returns:
minimum element, or Long.MAX_VALUE if empty


min

public long min(LongComparator comparator)
Returns the minimum element, or Long.MAX_VALUE if empty.
Parameters:
comparator - the comparator
Returns:
minimum element, or Long.MAX_VALUE if empty


reduce

public long reduce(LongReducer reducer, long base)
Returns reduction of elements.
Parameters:
reducer - the reducer
base - the result for an empty array
Returns:
reduction


sequentially

public 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.
Returns:
the Iterable view


sum

public long sum()
Returns the sum of elements.
Returns:
the sum of elements


summary

public SummaryStatistics summary(LongComparator comparator)
Returns summary statistics.
Parameters:
comparator - the comparator to use for locating minimum and maximum elements
Returns:
the summary


summary

public SummaryStatistics summary()
Returns summary statistics, using natural comparator.
Returns:
the summary


withIndexedMapping

public ParallelLongArrayWithMapping 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.
Parameters:
mapper - the mapper
Returns:
operation prefix


withIndexedMapping

public ParallelLongArrayWithDoubleMapping 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.
Parameters:
mapper - the mapper
Returns:
operation prefix


withIndexedMapping

public ParallelLongArrayWithLongMapping 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.
Parameters:
mapper - the mapper
Returns:
operation prefix


withMapping

public ParallelLongArrayWithLongMapping withMapping(LongOp op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.
Parameters:
op - the op
Returns:
operation prefix


withMapping

public ParallelLongArrayWithDoubleMapping withMapping(LongToDouble op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.
Parameters:
op - the op
Returns:
operation prefix


withMapping

public ParallelLongArrayWithMapping withMapping(LongToObject op)
Returns an operation prefix that causes a method to operate on mapped elements of the array using the given op.
Parameters:
op - the op
Returns:
operation prefix


withMapping

public ParallelLongArrayWithMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithDoubleMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithDoubleMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithDoubleMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithLongMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithLongMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


withMapping

public ParallelLongArrayWithLongMapping 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.
throws:
IllegalArgumentException if other array is a filtered view (all filters must precede all mappings)
Parameters:
combiner - the combiner
other - the other array
Returns:
operation prefix


 

Copyright © 2008–2013 Václav Pech. All Rights Reserved.