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

Comparing jsr166/src/extra166y/ParallelArrayWithFilter.java (file contents):
Revision 1.5 by jsr166, Sun Dec 30 02:05:53 2012 UTC vs.
Revision 1.8 by jsr166, Thu Feb 26 06:53:33 2015 UTC

# Line 5 | Line 5
5   */
6  
7   package extra166y;
8 +
9   import jsr166y.*;
10   import static extra166y.Ops.*;
11   import java.util.*;
12   import java.util.concurrent.atomic.*;
12 import java.lang.reflect.Array;
13  
14   /**
15   * A prefix view of ParallelArray that causes operations to apply
# Line 87 | Line 87 | public abstract class ParallelArrayWithF
87  
88      /**
89       * Replaces elements with results of applying
90 <     * <tt>op(thisElement, otherElement)</tt>.
90 >     * {@code op(thisElement, otherElement)}.
91       * @param other the other array
92       * @param combiner the combiner
93       * @return this (to simplify use in expressions)
# Line 103 | Line 103 | public abstract class ParallelArrayWithF
103  
104      /**
105       * Replaces elements with results of applying
106 <     * <tt>op(thisElement, otherElement)</tt>.
106 >     * {@code op(thisElement, otherElement)}.
107       * @param other the other array
108       * @param combiner the combiner
109       * @return this (to simplify use in expressions)
# Line 119 | Line 119 | public abstract class ParallelArrayWithF
119      /**
120       * Returns a new ParallelArray containing only non-null unique
121       * elements (that is, without any duplicates). This method
122 <     * uses each element's <tt>equals</tt> method to test for
122 >     * uses each element's {@code equals} method to test for
123       * duplication.
124       * @return the new ParallelArray
125       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines