add thing to tuple
All checks were successful
Build NuGet / build (push) Successful in 43s

This commit is contained in:
2026-04-06 14:02:57 -04:00
parent 99606ce358
commit 5e7b04efec

View File

@@ -3,5 +3,6 @@ namespace SJK.Functional;
public static class TupleExtensions public static class TupleExtensions
{ {
public static (T1, T2) ToTuple<T1, T2>(this T1 first, T2 second) => (first, second); public static (T1, T2) ToTuple<T1, T2>(this T1 first, T2 second) => (first, second);
public static (T1, T2, T3) ToTuple<T1, T2, T3>(this T1 first, T2 second, T3 third) => (first, second, third);
} }