ZipSelector<TFirst, TSecond, TResult> typedef

TResult ZipSelector (TFirst first, TSecond second)

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);