mapValues<V2> abstract method

ComputedMap<K, V2> mapValues<V2>(
  1. V2 convert(
    1. K key,
    2. V value
    )
)

Reactively maps all values of this reactive map by convert.

Implementation

ComputedMap<K, V2> mapValues<V2>(V2 Function(K key, V value) convert);