ValueMapper<T, V> typedef

ValueMapper<T, V> = V Function(T data)

为给定 T 类型数据 生成 V 类型值的函数的签名。

Implementation

typedef ValueMapper<T, V> = V Function(T data);