Package | Description |
---|---|
io.netty.util.internal.chmv8 |
Modifier and Type | Field and Description |
---|---|
(package private) ConcurrentHashMapV8.ObjectToDouble<? super K> |
ConcurrentHashMapV8.MapReduceKeysToDoubleTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToDouble<? super V> |
ConcurrentHashMapV8.MapReduceValuesToDoubleTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToDouble<java.util.Map.Entry<K,V>> |
ConcurrentHashMapV8.MapReduceEntriesToDoubleTask.transformer |
Modifier and Type | Method and Description |
---|---|
double |
ConcurrentHashMapV8.reduceEntriesToDouble(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToDouble<java.util.Map.Entry<K,V>> transformer,
double basis,
ConcurrentHashMapV8.DoubleByDoubleToDouble 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.
|
double |
ConcurrentHashMapV8.reduceKeysToDouble(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToDouble<? super K> transformer,
double basis,
ConcurrentHashMapV8.DoubleByDoubleToDouble 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.
|
double |
ConcurrentHashMapV8.reduceValuesToDouble(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToDouble<? super V> transformer,
double basis,
ConcurrentHashMapV8.DoubleByDoubleToDouble 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.
|