Files
SjkScripts/Functional/Tuple.cs

9 lines
271 B
C#
Raw Normal View History

2026-04-04 13:18:04 -04:00
namespace SJK.Functional;
public static class TupleExtensions
{
public static (T1, T2) ToTuple<T1, T2>(this T1 first, T2 second) => (first, second);
2026-04-06 14:02:57 -04:00
public static (T1, T2, T3) ToTuple<T1, T2, T3>(this T1 first, T2 second, T3 third) => (first, second, third);
2026-04-04 13:18:04 -04:00
}