Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitz committed Nov 22, 2019
1 parent 7f4f6e3 commit 5b939d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shared/Util/Extensions/IEnumerableTuple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static string Joined<T1, T2>(this IEnumerable<(T1, T2)> src, string delim
public static IEnumerable<TResult> SelectT<T1, T2, TResult>(this IEnumerable<ValueTuple<T1, T2>> src, Func<T1, T2, TResult> selector) =>
src.Select(x => selector(x.Item1, x.Item2));
public static IEnumerable<TResult> SelectT<T1, T2, T3, TResult>(this IEnumerable<ValueTuple<T1, T2, T3>> src, Func<T1, T2, T3, TResult> selector) =>
src.Select(x => selector(x.Item1, x.Item2));
src.Select(x => selector(x.Item1, x.Item2, x.Item3));
public static IEnumerable<TResult> SelectT<T1, T2, , T3, T4, TResult>(this IEnumerable<ValueTuple<T1, T2, T3, T4>> src, Func<T1, T2, T3, T4, TResult> selector) =>
src.Select(x => selector(x.Item1, x.Item2, x.Item3, x.Item4));
}
Expand Down

0 comments on commit 5b939d7

Please sign in to comment.