Java Code Examples for java.util.concurrent.ConcurrentHashMap#reduceValuesToInt()
The following examples show how to use
java.util.concurrent.ConcurrentHashMap#reduceValuesToInt() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConcurrentHashMap8Test.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * reduceValuesToIntSequentially accumulates mapped values */ public void testReduceValuesToIntSequentially() { ConcurrentHashMap<Long, Long> m = longMap(); int ir = m.reduceValuesToInt(Long.MAX_VALUE, (Long x) -> x.intValue(), 0, Integer::sum); assertEquals(ir, SIZE * (SIZE - 1)); }
Example 2
Source File: ConcurrentHashMap8Test.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * reduceValuesToIntInParallel accumulates mapped values */ public void testReduceValuesToIntInParallel() { ConcurrentHashMap<Long, Long> m = longMap(); int ir = m.reduceValuesToInt(1L, (Long x) -> x.intValue(), 0, Integer::sum); assertEquals(ir, SIZE * (SIZE - 1)); }
Example 3
Source File: ConcurrentHashMap8Test.java From j2objc with Apache License 2.0 | 4 votes |
/** * reduceValuesToIntSequentially accumulates mapped values */ public void testReduceValuesToIntSequentially() { ConcurrentHashMap<Long, Long> m = longMap(); int ir = m.reduceValuesToInt(Long.MAX_VALUE, (Long x) -> x.intValue(), 0, Integer::sum); assertEquals(ir, SIZE * (SIZE - 1)); }
Example 4
Source File: ConcurrentHashMap8Test.java From j2objc with Apache License 2.0 | 4 votes |
/** * reduceValuesToIntInParallel accumulates mapped values */ public void testReduceValuesToIntInParallel() { ConcurrentHashMap<Long, Long> m = longMap(); int ir = m.reduceValuesToInt(1L, (Long x) -> x.intValue(), 0, Integer::sum); assertEquals(ir, SIZE * (SIZE - 1)); }