Package | Description |
---|---|
groovyx.gpars.extra166y |
Collections supporting parallel operations.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
AbstractParallelAnyArray.OUPap<T> |
class |
ParallelArray<T>
An array supporting parallel operations.
|
Modifier and Type | Method and Description |
---|---|
ParallelArrayWithBounds<T> |
AbstractParallelAnyArray.OUPap.cumulate(Ops.Reducer<T> reducer,
T base) |
abstract ParallelArrayWithBounds<T> |
ParallelArrayWithBounds.cumulate(Ops.Reducer<T> reducer,
T base)
Replaces each element with the running cumulation of applying
the given reducer.
|
ParallelArrayWithBounds<T> |
AbstractParallelAnyArray.OUPap.sort() |
abstract ParallelArrayWithBounds<T> |
ParallelArrayWithBounds.sort()
Sorts the elements, assuming all elements are
Comparable.
|
ParallelArrayWithBounds<T> |
AbstractParallelAnyArray.OUPap.sort(java.util.Comparator<? super T> cmp) |
abstract ParallelArrayWithBounds<T> |
ParallelArrayWithBounds.sort(java.util.Comparator<? super T> cmp)
Sorts the elements.
|
ParallelArrayWithBounds<T> |
AbstractParallelAnyArray.OUPap.withBounds(int lo,
int hi) |
ParallelArrayWithBounds<T> |
ParallelArray.withBounds(int firstIndex,
int upperBound)
Returns an operation prefix that causes a method to
operate only on the elements of the array between
firstIndex (inclusive) and upperBound (exclusive).
|
abstract ParallelArrayWithBounds<T> |
ParallelArrayWithBounds.withBounds(int firstIndex,
int upperBound)
Returns an operation prefix that causes a method to operate
only on the elements of the array between firstIndex
(inclusive) and upperBound (exclusive).
|