ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/extra166y/ParallelArray.java
(Generate patch)

Comparing jsr166/src/extra166y/ParallelArray.java (file contents):
Revision 1.3 by jsr166, Mon Dec 5 04:08:47 2011 UTC vs.
Revision 1.5 by jsr166, Sun Oct 21 06:14:11 2012 UTC

# Line 139 | Line 139 | import java.lang.reflect.Array;
139   *   static final GpaField gpaField = new GpaField();
140   * }
141   * </pre>
142 *
142   */
143   public class ParallelArray<T> extends AbstractParallelAnyArray.OUPap<T> implements Iterable<T> {
144      /*
# Line 273 | Line 272 | public class ParallelArray<T> extends Ab
272       * mapped ParallelArray.
273       */
274      public static interface SummaryStatistics<T> {
275 <        /** Return the number of elements */
275 >        /** Returns the number of elements */
276          public int size();
277 <        /** Return the minimum element, or null if empty */
277 >        /** Returns the minimum element, or null if empty */
278          public T min();
279 <        /** Return the maximum element, or null if empty */
279 >        /** Returns the maximum element, or null if empty */
280          public T max();
281 <        /** Return the index of the minimum element, or -1 if empty */
281 >        /** Returns the index of the minimum element, or -1 if empty */
282          public int indexOfMin();
283 <        /** Return the index of the maximum element, or -1 if empty */
283 >        /** Returns the index of the maximum element, or -1 if empty */
284          public int indexOfMax();
285      }
286  
287      /**
288 <     * Returns the executor used for computations
288 >     * Returns the executor used for computations.
289       * @return the executor
290       */
291      public ForkJoinPool getExecutor() { return ex; }
# Line 1096 | Line 1095 | public class ParallelArray<T> extends Ab
1095      }
1096  
1097      /**
1098 <     * Make len slots available at index
1098 >     * Makes len slots available at index.
1099       */
1100      final void insertSlotsAt(int index, int len) {
1101          if (len <= 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines