Package | Description |
---|---|
io.netty.util.internal.chmv8 |
Modifier and Type | Field and Description |
---|---|
(package private) ConcurrentHashMapV8.ObjectToInt<? super K> |
ConcurrentHashMapV8.MapReduceKeysToIntTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToInt<? super V> |
ConcurrentHashMapV8.MapReduceValuesToIntTask.transformer |
(package private) ConcurrentHashMapV8.ObjectToInt<java.util.Map.Entry<K,V>> |
ConcurrentHashMapV8.MapReduceEntriesToIntTask.transformer |
Modifier and Type | Method and Description |
---|---|
int |
ConcurrentHashMapV8.reduceEntriesToInt(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToInt<java.util.Map.Entry<K,V>> transformer,
int basis,
ConcurrentHashMapV8.IntByIntToInt 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.
|
int |
ConcurrentHashMapV8.reduceKeysToInt(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToInt<? super K> transformer,
int basis,
ConcurrentHashMapV8.IntByIntToInt 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.
|
int |
ConcurrentHashMapV8.reduceValuesToInt(long parallelismThreshold,
ConcurrentHashMapV8.ObjectToInt<? super V> transformer,
int basis,
ConcurrentHashMapV8.IntByIntToInt 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.
|