mapValuesComputed<V2> abstract method

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

Reactively maps all values of this reactive map by convert.

Implementation

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