applies the function mapping_funcs[K] to input input_data[K], for every key K in mapping_funcs
see RecordMapper to get an understanding of what mapping_funcs is supposed to look like, and how to type it.
moreover, the 3 generic parameters (R, U, D) used here are the same as the ones at RecordMapper, so check it out.
applies the function
mapping_funcs[K]
to inputinput_data[K]
, for every keyK in mapping_funcs
see RecordMapper to get an understanding of what
mapping_funcs
is supposed to look like, and how to type it.moreover, the 3 generic parameters (
R
,U
,D
) used here are the same as the ones at RecordMapper, so check it out.Example