ZipSelector<TFirst, TSecond, TResult> typedef
Takes an element of type TFirst
and an element of type TSecond
and maps
them into a value of type TResult
, returning the value.
Implementation
typedef TResult ZipSelector<TFirst, TSecond, TResult>(
TFirst first, TSecond second);