updateAll abstract method

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

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

Implementation

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