Package | Description |
---|---|
groovyx.gpars.extra166y |
Collections supporting parallel operations.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
AbstractParallelAnyArray.LFPap |
(package private) static class |
AbstractParallelAnyArray.LRPap |
(package private) static class |
AbstractParallelAnyArray.LUPap |
class |
ParallelLongArray
An array of longs supporting parallel operations.
|
class |
ParallelLongArrayWithBounds
A prefix view of ParallelLongArray that causes operations to apply
only to elements within a given range.
|
Modifier and Type | Method and Description |
---|---|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithGeneratedValue(Ops.LongGenerator generator)
Replaces elements with results of applying the given
generator.
|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithMappedIndex(Ops.IntAndLongToLong op)
Replaces elements with the results of applying the given
mapping to each index and current element value.
|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithMappedIndex(Ops.IntToLong op)
Replaces elements with the results of applying the given
op to their indices.
|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithMapping(Ops.BinaryLongOp combiner,
long[] other)
Replaces elements with results of applying
op(thisElement, otherElement) . |
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithMapping(Ops.BinaryLongOp combiner,
ParallelLongArrayWithLongMapping other)
Replaces elements with results of applying
op(thisElement, otherElement) . |
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithMapping(Ops.LongOp op)
Replaces elements with the results of applying the given
op to their current values.
|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.replaceWithValue(long value)
Replaces elements with the given value.
|
ParallelLongArrayWithFilter |
ParallelLongArray.withFilter(Ops.BinaryLongPredicate selector,
ParallelLongArrayWithLongMapping other)
Returns an operation prefix that causes a method to operate
only on elements for which the given binary selector returns
true.
|
ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.withFilter(Ops.BinaryLongPredicate selector,
ParallelLongArrayWithLongMapping other)
Returns an operation prefix that causes a method to operate
only on elements for which the current selector (if
present) and the given binary selector returns true.
|
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LUPap.withFilter(Ops.LongPredicate selector) |
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LFPap.withFilter(Ops.LongPredicate selector) |
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LRPap.withFilter(Ops.LongPredicate selector) |
ParallelLongArrayWithFilter |
ParallelLongArray.withFilter(Ops.LongPredicate selector)
Returns an operation prefix that causes a method to operate
only on the elements of the array for which the given selector
returns true.
|
abstract ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.withFilter(Ops.LongPredicate selector)
Returns an operation prefix that causes a method to operate
only on elements for which the current selector (if
present) and the given selector returns true.
|
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LUPap.withIndexedFilter(Ops.IntAndLongPredicate selector) |
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LFPap.withIndexedFilter(Ops.IntAndLongPredicate selector) |
ParallelLongArrayWithFilter |
AbstractParallelAnyArray.LRPap.withIndexedFilter(Ops.IntAndLongPredicate selector) |
ParallelLongArrayWithFilter |
ParallelLongArray.withIndexedFilter(Ops.IntAndLongPredicate selector)
Returns an operation prefix that causes a method to operate
only on elements for which the given indexed selector returns
true.
|
abstract ParallelLongArrayWithFilter |
ParallelLongArrayWithFilter.withIndexedFilter(Ops.IntAndLongPredicate selector)
Returns an operation prefix that causes a method to operate
only on elements for which the current selector (if
present) and the given indexed selector returns true.
|