ofValues
fun <K, FV, TV> ofValues(valueConverter: ConvertsFrom<FV, TV>): ConvertsFrom<Map<K, FV>, Map<K, TV>>
Creates a one-way converter for transforming Map with values of type TV to Map with values of type FV. The keys of the map are unchanged.
Parameters
K
The type of keys
FV
The type of values being converted to
TV
The type of values being converted from
Creates a one-way converter for transforming Map with values of type FV to Map with values of type TV. The keys of the map are unchanged.
Parameters
K
The type of keys
FV
The type of values being converted from
TV
The type of values being converted to
Creates a two-way converter for transforming between Map with values of type FV and Map with values of type TV. The keys of the map are unchanged.