mapConvertsValuesFrom
fun <K, FV, FV2, T> ConvertsFrom<Map<K, FV>, T>.mapConvertsValuesFrom(valueConverter: ConvertsFrom<FV2, FV>): ConvertsFrom<Map<K, FV2>, T>
Chains this map converter with a value converter, yielding a new converter which performs a two-stage mapping conversion. (Note that these two "stages" are conceptual. Each of these stages may consist of multiple logical steps in their actual implementation.)
Parameters
K
The type of keys
FV
The type of values being converted to
FV2
The type of values being converted from
T
The target type of this converter
valueConverter
The value converter to chain together with this map converter. Note that the target type of the given valueConverter must be the same as the source value type of this converter.