mapConvertsFrom
fun <FK, FV, FK2, FV2, T> ConvertsFrom<Map<FK, FV>, T>.mapConvertsFrom(entryConverter: ConvertsFrom<Pair<FK2, FV2>, Pair<FK, FV>>): ConvertsFrom<Map<FK2, FV2>, T>
Chains this map converter with an entry 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
FK
The type of keys being converted to
FV
The type of values being converted to
FK2
The type of keys being converted from
FV2
The type of values being converted from
entryConverter
The entry converter to chain together with this map converter. Note that the target types of the given entryConverter must be the same as the source types of this converter.