Package | Description |
---|---|
groovyx.gpars.extra166y |
Collections supporting parallel operations.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
AbstractParallelAnyArray.LUPap |
class |
ParallelLongArray
An array of longs supporting parallel operations.
|
Modifier and Type | Method and Description |
---|---|
ParallelLongArrayWithBounds |
AbstractParallelAnyArray.LUPap.cumulate(Ops.LongReducer reducer,
long base) |
abstract ParallelLongArrayWithBounds |
ParallelLongArrayWithBounds.cumulate(Ops.LongReducer reducer,
long base)
Replaces each element with the running cumulation of applying
the given reducer.
|
ParallelLongArrayWithBounds |
AbstractParallelAnyArray.LUPap.cumulateSum() |
abstract ParallelLongArrayWithBounds |
ParallelLongArrayWithBounds.cumulateSum()
Replaces each element with the running sum.
|
ParallelLongArrayWithBounds |
AbstractParallelAnyArray.LUPap.sort() |
abstract ParallelLongArrayWithBounds |
ParallelLongArrayWithBounds.sort()
Sorts the elements, assuming all elements are
Comparable.
|
ParallelLongArrayWithBounds |
AbstractParallelAnyArray.LUPap.sort(Ops.LongComparator cmp) |
abstract ParallelLongArrayWithBounds |
ParallelLongArrayWithBounds.sort(Ops.LongComparator cmp)
Sorts the elements.
|
ParallelLongArrayWithBounds |
AbstractParallelAnyArray.LUPap.withBounds(int lo,
int hi) |
ParallelLongArrayWithBounds |
ParallelLongArray.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 ParallelLongArrayWithBounds |
ParallelLongArrayWithBounds.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).
|