Mapper.map

Map from component to component.

Map from component to component, or transfer data from component to component with optional conversion of data along the way.

interface Mapper(To, From = To)
const
void
map
(
From from
,
ref To to
,
RCIAllocator allocator = theAllocator
)

Parameters

from From

original component that has it's data transferred

to To

destination component that receives transferred data

allocator RCIAllocator

optional allocator that could be used by convertors when doing field conversion

Meta