From d0968e158626819506c57a1a7c1ae055adddda15 Mon Sep 17 00:00:00 2001 From: ronnie Date: Wed, 8 Apr 2026 11:00:51 -0400 Subject: [PATCH] wertgohiuhiaserguioshaegrhioperg --- Functional/Tuple.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Functional/Tuple.cs b/Functional/Tuple.cs index 7d72684..cf33904 100644 --- a/Functional/Tuple.cs +++ b/Functional/Tuple.cs @@ -4,5 +4,6 @@ public static class TupleExtensions { public static (T1, T2) ToTuple(this T1 first, T2 second) => (first, second); public static (T1, T2, T3) ToTuple(this T1 first, T2 second, T3 third) => (first, second, third); + public static (T1, T2, T3, T4) ToTuple(this T1 first, T2 second, T3 third, T4 forth) => (first, second, third, forth); }