jsr166z.forkjoin
Class ParallelArray.WithIntMapping<T>

java.lang.Object
  extended by jsr166z.forkjoin.ParallelArray.WithIntMapping<T>
Enclosing class:
ParallelArray<T>

public abstract static class ParallelArray.WithIntMapping<T>
extends java.lang.Object

A modifier for parallel array operations to apply to mappings of elements to ints, not to the elements themselves


Method Summary
abstract  int any()
          Returns mapping of some element matching bound and filter constraints
abstract  int anyIndex()
          Returns the index of some element matching bound and filter constraints, or -1 if none.
 void apply({int=>void} procedure)
          Applies the given procedure
 int indexOfMax()
          Returns the index corresponding to the element for which the given mapping is greatest, or -1 if empty
 int indexOfMax({int,int=>int} comparator)
          Returns the index corresponding to the element for which the given mapping is greatest, or -1 if empty
 int indexOfMin()
          Returns the index corresponding to the element for which the given mapping is least, or -1 if empty
 int indexOfMin({int,int=>int} comparator)
          Returns the index corresponding to the element for which the given mapping is least, or -1 if empty
 int max()
          Returns the maximum element, or Integer.MIN_VALUE if empty
 int max({int,int=>int} comparator)
          Returns the maximum element, or Integer.MIN_VALUE if empty
 int min()
          Returns the minimum element, or Integer.MAX_VALUE if empty
 int min({int,int=>int} comparator)
          Returns the minimum element, or Integer.MAX_VALUE if empty
abstract  ParallelIntArray newArray()
          Returns a new ParallelIntArray holding mappings
 int reduce({int,int=>int} reducer, int base)
          Returns reduction of mapped elements
abstract  int size()
          Return the number of elements selected using bound or filter restrictions.
 int sum()
          Returns the sum of elements
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

apply

public void apply({int=>void} procedure)
Applies the given procedure

Parameters:
procedure - the procedure

reduce

public int reduce({int,int=>int} reducer,
                  int base)
Returns reduction of mapped elements

Parameters:
reducer - the reducer
base - the result for an empty array
Returns:
reduction

min

public int min()
Returns the minimum element, or Integer.MAX_VALUE if empty

Returns:
minimum element, or Integer.MAX_VALUE if empty

min

public int min({int,int=>int} comparator)
Returns the minimum element, or Integer.MAX_VALUE if empty

Parameters:
comparator - the comparator
Returns:
minimum element, or Integer.MAX_VALUE if empty

max

public int max()
Returns the maximum element, or Integer.MIN_VALUE if empty

Returns:
maximum element, or Integer.MIN_VALUE if empty

max

public int max({int,int=>int} comparator)
Returns the maximum element, or Integer.MIN_VALUE if empty

Parameters:
comparator - the comparator
Returns:
maximum element, or Integer.MIN_VALUE if empty

sum

public int sum()
Returns the sum of elements

Returns:
the sum of elements

indexOfMin

public int indexOfMin()
Returns the index corresponding to the element for which the given mapping is least, or -1 if empty

Returns:
the index of least element or -1 if empty.

indexOfMax

public int indexOfMax()
Returns the index corresponding to the element for which the given mapping is greatest, or -1 if empty

Returns:
the index of greatest element or -1 if empty.

indexOfMin

public int indexOfMin({int,int=>int} comparator)
Returns the index corresponding to the element for which the given mapping is least, or -1 if empty

Parameters:
comparator - the comparator
Returns:
the index of least element or -1 if empty.

indexOfMax

public int indexOfMax({int,int=>int} comparator)
Returns the index corresponding to the element for which the given mapping is greatest, or -1 if empty

Parameters:
comparator - the comparator
Returns:
the index of greatest element or -1 if empty.

newArray

public abstract ParallelIntArray newArray()
Returns a new ParallelIntArray holding mappings

Returns:
a new ParallelIntArray holding mappings

size

public abstract int size()
Return the number of elements selected using bound or filter restrictions. Note that this method must evaluate all selectors to return its result.

Returns:
the number of elements

anyIndex

public abstract int anyIndex()
Returns the index of some element matching bound and filter constraints, or -1 if none.

Returns:
index of matching element, or -1 if none.

any

public abstract int any()
Returns mapping of some element matching bound and filter constraints

Returns:
mapping of matching element
Throws:
java.util.NoSuchElementException - if empty