ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.220 by jsr166, Wed Jun 5 13:48:59 2013 UTC vs.
Revision 1.221 by jsr166, Wed Jun 5 16:00:55 2013 UTC

# Line 3962 | Line 3962 | public class ConcurrentHashMap<K,V> impl
3962       * @param reducer a commutative associative combining function
3963       * @return the result of accumulating the given transformation
3964       * of all entries
3965 +     * @since 1.8
3966       */
3967      public long reduceEntriesToLong(long parallelismThreshold,
3968                                      ToLongFunction<Map.Entry<K,V>> transformer,
# Line 3987 | Line 3988 | public class ConcurrentHashMap<K,V> impl
3988       * @param reducer a commutative associative combining function
3989       * @return the result of accumulating the given transformation
3990       * of all entries
3991 +     * @since 1.8
3992       */
3993      public int reduceEntriesToInt(long parallelismThreshold,
3994                                    ToIntFunction<Map.Entry<K,V>> transformer,
# Line 4162 | Line 4164 | public class ConcurrentHashMap<K,V> impl
4164       * {@link #keySet(Object) keySet(V)},
4165       * {@link #newKeySet() newKeySet()},
4166       * {@link #newKeySet(int) newKeySet(int)}.
4167 +     *
4168 +     * @since 1.8
4169       */
4170      public static class KeySetView<K,V> extends CollectionView<K,V,K>
4171          implements Set<K>, java.io.Serializable {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines