Package | Description |
---|---|
io.netty.util.internal.chmv8 |
Modifier and Type | Field and Description |
---|---|
(package private) ConcurrentHashMapV8.ObjectToLong<? super K> |
ConcurrentHashMapV8.MapReduceKeysToLongTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToLong<? super V> |
ConcurrentHashMapV8.MapReduceValuesToLongTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToLong<java.util.Map.Entry<K,V>> |
ConcurrentHashMapV8.MapReduceEntriesToLongTask.transformer |
Modifier and Type | Method and Description |
---|---|
long |
ConcurrentHashMapV8.reduceEntriesToLong(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToLong<java.util.Map.Entry<K,V>> transformer,
long basis,
ConcurrentHashMapV8.LongByLongToLong reducer)
Returns the result of accumulating the given transformation
of all entries using the given reducer to combine values,
and the given basis as an identity value.
|
long |
ConcurrentHashMapV8.reduceKeysToLong(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToLong<? super K> transformer,
long basis,
ConcurrentHashMapV8.LongByLongToLong reducer)
Returns the result of accumulating the given transformation
of all keys using the given reducer to combine values, and
the given basis as an identity value.
|
long |
ConcurrentHashMapV8.reduceValuesToLong(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToLong<? super V> transformer,
long basis,
ConcurrentHashMapV8.LongByLongToLong reducer)
Returns the result of accumulating the given transformation
of all values using the given reducer to combine values,
and the given basis as an identity value.
|