updateAllComputed abstract method

ComputedMap<K, V> updateAllComputed(
  1. Computed<V> update(
    1. K key,
    2. V value
    )
)

A special case of mapValuesComputed where the input and output types are the same.

Implementation

ComputedMap<K, V> updateAllComputed(
    Computed<V> Function(K key, V value) update);