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

Comparing jsr166/src/jsr166e/ConcurrentHashMapV8.java (file contents):
Revision 1.54 by jsr166, Mon Aug 13 18:15:39 2012 UTC vs.
Revision 1.55 by jsr166, Mon Aug 13 18:25:53 2012 UTC

# Line 2898 | Line 2898 | public class ConcurrentHashMapV8<K, V>
2898      }
2899  
2900      /**
2901 <     * Returns a partionable iterator of the keys in this map.
2901 >     * Returns a partitionable iterator of the keys in this map.
2902       *
2903 <     * @return a partionable iterator of the keys in this map
2903 >     * @return a partitionable iterator of the keys in this map
2904       */
2905      public Spliterator<K> keySpliterator() {
2906          return new KeyIterator<K,V>(this);
2907      }
2908  
2909      /**
2910 <     * Returns a partionable iterator of the values in this map.
2910 >     * Returns a partitionable iterator of the values in this map.
2911       *
2912 <     * @return a partionable iterator of the values in this map
2912 >     * @return a partitionable iterator of the values in this map
2913       */
2914      public Spliterator<V> valueSpliterator() {
2915          return new ValueIterator<K,V>(this);
2916      }
2917  
2918      /**
2919 <     * Returns a partionable iterator of the entries in this map.
2919 >     * Returns a partitionable iterator of the entries in this map.
2920       *
2921 <     * @return a partionable iterator of the entries in this map
2921 >     * @return a partitionable iterator of the entries in this map
2922       */
2923      public Spliterator<Map.Entry<K,V>> entrySpliterator() {
2924          return new EntryIterator<K,V>(this);
# Line 4811 | Line 4811 | public class ConcurrentHashMapV8<K, V>
4811  
4812      /**
4813       * Base for FJ tasks for bulk operations. This adds a variant of
4814 <     * CountedCompleters and some split and merge bookeeping to
4814 >     * CountedCompleters and some split and merge bookkeeping to
4815       * iterator functionality. The forEach and reduce methods are
4816       * similar to those illustrated in CountedCompleter documentation,
4817       * except that bottom-up reduction completions perform them within

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines