From 5e7b04efec29832d2fa6bf5ec565154c9ef751d7 Mon Sep 17 00:00:00 2001 From: ronnie Date: Mon, 6 Apr 2026 14:02:57 -0400 Subject: [PATCH] add thing to tuple --- Functional/Tuple.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Functional/Tuple.cs b/Functional/Tuple.cs index 4e17ddb..7d72684 100644 --- a/Functional/Tuple.cs +++ b/Functional/Tuple.cs @@ -3,5 +3,6 @@ namespace SJK.Functional; 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); }