Uses of Class
groovyx.gpars.extra166y.ParallelArrayWithBounds

Packages that use ParallelArrayWithBounds
groovyx.gpars.extra166y Collections supporting parallel operations. 
 

Uses of ParallelArrayWithBounds in groovyx.gpars.extra166y
 

Subclasses of ParallelArrayWithBounds in groovyx.gpars.extra166y
(package private) static class AbstractParallelAnyArray.OUPap<T>
           
 class ParallelArray<T>
          An array supporting parallel operations.
 

Methods in groovyx.gpars.extra166y that return ParallelArrayWithBounds
 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).
 


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