CastTransformer<TSource, TResult> typedef
Takes an element of type TSource
and casts it to type TResult
, returning
the result of the cast.
Implementation
typedef TResult CastTransformer<TSource, TResult>(TSource element);