map<K2, V2> abstract method

ComputedMap<K2, V2> map<K2, V2>(
  1. MapEntry<K2, V2> convert(
    1. K key,
    2. V value
    )
)

Reactively maps each entry of this reactive map by convert.

Implementation

ComputedMap<K2, V2> map<K2, V2>(
    MapEntry<K2, V2> Function(K key, V value) convert);