--- jsr166/src/extra166y/ParallelArray.java 2012/12/30 02:05:53 1.8 +++ jsr166/src/extra166y/ParallelArray.java 2013/01/16 00:51:11 1.9 @@ -42,15 +42,15 @@ import java.lang.reflect.Array; *

A ParallelArray is not a List. It relies on random access across * array elements to support efficient parallel operations. However, * a ParallelArray can be viewed and manipulated as a List, via method - * {@link ParallelArray#asList}. The asList view allows + * {@link ParallelArray#asList}. The {@code asList} view allows * incremental insertion and modification of elements while setting up * a ParallelArray, generally before using it for parallel * operations. Similarly, the list view may be useful when accessing * the results of computations in sequential contexts. A * ParallelArray may also be created using the elements of any other * Collection, by constructing from the array returned by the - * Collection's toArray method. The effects of mutative - * asList operations may also be achieved directly using + * Collection's {@code toArray} method. The effects of mutative + * {@code asList} operations may also be achieved directly using * method {@link #setLimit} along with element-by-element access * methods {@link #get} and {@link #set}. * @@ -61,8 +61,8 @@ import java.lang.reflect.Array; * {@link ParallelDoubleArray} are also supplied, and designed to * smoothly interoperate with ParallelArrays. You should also use a * ParallelLongArray for processing other integral scalar data - * (int, short, etc). And similarly use a - * ParallelDoubleArray for float data. (Further + * ({@code int}, {@code short}, etc). And similarly use a + * ParallelDoubleArray for {@code float} data. (Further * specializations for these other types would add clutter without * significantly improving performance beyond that of the Long and * Double versions.) @@ -70,12 +70,12 @@ import java.lang.reflect.Array; *

Most usages of ParallelArray involve sets of operations prefixed * with range bounds, filters, and mappings (including mappings that * combine elements from other ParallelArrays), using - * withBounds, withFilter, and withMapping, + * {@code withBounds}, {@code withFilter}, and {@code withMapping}, * respectively. For example, - * aParallelArray.withFilter(aPredicate).all() creates a new + * {@code aParallelArray.withFilter(aPredicate).all()} creates a new * ParallelArray containing only those elements matching the * predicate. And for ParallelLongArrays a, b, and c, - * a.withMapping(CommonOps.longAdder(),b).withMapping(CommonOps.longAdder(),c).min() + * {@code a.withMapping(CommonOps.longAdder(),b).withMapping(CommonOps.longAdder(),c).min()} * returns the minimum value of a[i]+b[i]+c[i] for all i. As * illustrated below, a mapping often represents accessing * some field or invoking some method of an element. These versions @@ -87,21 +87,21 @@ import java.lang.reflect.Array; * be cascaded, but all filter prefixes must precede all mapping * prefixes, to ensure efficient execution in a single parallel step. * In cases of combined mapping expressions, this rule is only - * dynamically enforced. For example, pa.withMapping(op, - * pb.withFilter(f)) will compile but throw an exception upon + * dynamically enforced. For example, {@code pa.withMapping(op, + * pb.withFilter(f))} will compile but throw an exception upon * execution because the filter precedes the mapping. * *

While series of filters and mappings are allowed, it is * usually more efficient to combine them into single filters or * mappings when possible. For example - * pa.withMapping(addOne).withMapping(addOne) is generally - * less efficient than pa.withMapping(addTwo). Methods - * withIndexedFilter and withIndexedMapping may be + * {@code pa.withMapping(addOne).withMapping(addOne)} is generally + * less efficient than {@code pa.withMapping(addTwo)}. Methods + * {@code withIndexedFilter} and {@code withIndexedMapping} may be * useful when combining such expressions. * - *

This class includes some reductions, such as min, that + *

This class includes some reductions, such as {@code min}, that * are commonly useful for most element types, as well as a combined - * version, summary, that computes all of them in a single + * version, {@code summary}, that computes all of them in a single * parallel step, which is normally more efficient than computing each * in turn. * @@ -117,7 +117,7 @@ import java.lang.reflect.Array; * programming with aggregates is that you must separately define each * of the component functions on elements. For example, the following * returns the maximum Grade Point Average across all senior students, - * given a (fictional) Student class: + * given a (fictional) {@code Student} class: * *

  * import static Ops.*;
@@ -386,7 +386,7 @@ public class ParallelArray extends Ab
 
     /**
      * Replaces elements with results of applying
-     * op(thisElement, otherElement).
+     * {@code op(thisElement, otherElement)}.
      * @param other the other array
      * @param combiner the combiner
      * @return this (to simplify use in expressions)
@@ -400,7 +400,7 @@ public class ParallelArray extends Ab
 
     /**
      * Replaces elements with results of applying
-     * op(thisElement, otherElement).
+     * {@code op(thisElement, otherElement)}.
      * @param other the other array
      * @param combiner the combiner
      * @return this (to simplify use in expressions)
@@ -507,9 +507,9 @@ public class ParallelArray extends Ab
     /**
      * Replaces each element with the running cumulation of applying
      * the given reducer. For example, if the contents are the numbers
-     * 1, 2, 3, and the reducer operation adds numbers, then
-     * after invocation of this method, the contents would be 1,
-     * 3, 6 (that is, 1, 1+2, 1+2+3);
+     * {@code 1, 2, 3}, and the reducer operation adds numbers, then
+     * after invocation of this method, the contents would be {@code 1,
+     * 3, 6} (that is, {@code 1, 1+2, 1+2+3});
      * @param reducer the reducer
      * @param base the result for an empty array
      * @return this (to simplify use in expressions)
@@ -522,11 +522,11 @@ public class ParallelArray extends Ab
     /**
      * Replaces each element with the cumulation of applying the given
      * reducer to all previous values, and returns the total
-     * reduction. For example, if the contents are the numbers 1,
-     * 2, 3, and the reducer operation adds numbers, then after
-     * invocation of this method, the contents would be 0, 1,
-     * 3 (that is, 0, 0+1, 0+1+2, and the return value
-     * would be 6 (that is,  1+2+3);
+     * reduction. For example, if the contents are the numbers {@code 1,
+     * 2, 3}, and the reducer operation adds numbers, then after
+     * invocation of this method, the contents would be {@code 0, 1,
+     * 3} (that is, {@code 0, 0+1, 0+1+2}, and the return value
+     * would be 6 (that is, {@code  1+2+3});
      * @param reducer the reducer
      * @param base the result for an empty array
      * @return the total reduction
@@ -562,7 +562,7 @@ public class ParallelArray extends Ab
     /**
      * Returns a new ParallelArray containing only the non-null unique
      * elements of this array (that is, without any duplicates), using
-     * each element's equals method to test for duplication.
+     * each element's {@code equals} method to test for duplication.
      * @return the new ParallelArray
      */
     public ParallelArray allUniqueElements() {
@@ -657,7 +657,7 @@ public class ParallelArray extends Ab
     }
 
     /**
-     * Equivalent to asList().addAll but specialized for array
+     * Equivalent to {@code asList().addAll} but specialized for array
      * arguments and likely to be more efficient.
      * @param other the elements to add
      * @return this (to simplify use in expressions)
@@ -963,7 +963,7 @@ public class ParallelArray extends Ab
      * Returns an iterator stepping through each element of the array
      * up to the current limit. This iterator does not
      * support the remove operation. However, a full
-     * ListIterator supporting add, remove, and set
+     * {@code ListIterator} supporting add, remove, and set
      * operations is available via {@link #asList}.
      * @return an iterator stepping through each element
      */
@@ -1037,7 +1037,7 @@ public class ParallelArray extends Ab
     public T[] getArray() { return array; }
 
     /**
-     * Equivalent to asList().toString()
+     * Equivalent to {@code asList().toString()}
      * @return a string representation
      */
     public String toString() {