JoinMapExtension<T> extension

on

Methods

joinMap<TInner, TKey, TResult>(Iterable<TInner> other, TResult resultSelector(T element, TInner otherElement), {TKey outerKeySelector(T element), TKey innerKeySelector(TInner otherElement), EqualityComparer<TKey> keyComparer}) Iterable<TResult>
Finds keys in this iterable with matching keys in the other collection and returns a value that is the result of the corresponding elements being merged. [...]