Function that transforms one value into another.
Input value type.
Transformed value type.
const toLabel: Mapper<number, string> = (value) => `item-${value}`; Copy
const toLabel: Mapper<number, string> = (value) => `item-${value}`;
Function that transforms one value into another.