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.75 by dl, Wed Oct 31 12:49:13 2012 UTC vs.
Revision 1.76 by jsr166, Fri Nov 9 03:30:03 2012 UTC

# Line 3010 | Line 3010 | public class ConcurrentHashMapV8<K, V>
3010      /**
3011       * Returns a {@link Collection} view of the values contained in this map.
3012       * The collection is backed by the map, so changes to the map are
3013 <     * reflected in the collection, and vice-versa.
3013 >     * reflected in the collection, and vice-versa.
3014       */
3015      public ValuesView<K,V> values() {
3016          ValuesView<K,V> vs = values;
# Line 4247 | Line 4247 | public class ConcurrentHashMapV8<K, V>
4247              return ForkJoinTasks.reduceKeysToLong
4248                  (map, transformer, basis, reducer).invoke();
4249          }
4250 <        
4250 >
4251          /**
4252           * Returns the result of accumulating the given transformation
4253           * of all keys using the given reducer to combine values, and
# Line 4266 | Line 4266 | public class ConcurrentHashMapV8<K, V>
4266              return ForkJoinTasks.reduceKeysToInt
4267                  (map, transformer, basis, reducer).invoke();
4268          }
4269 <        
4269 >
4270      }
4271  
4272      /**
# Line 4388 | Line 4388 | public class ConcurrentHashMapV8<K, V>
4388              return ForkJoinTasks.reduceValues
4389                  (map, transformer, reducer).invoke();
4390          }
4391 <        
4391 >
4392          /**
4393           * Returns the result of accumulating the given transformation
4394           * of all values using the given reducer to combine values,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines