Init Scripts in new repo

This commit is contained in:
2026-04-04 13:18:04 -04:00
commit d988008613
26 changed files with 1497 additions and 0 deletions

7
Functional/Tuple.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace SJK.Functional;
public static class TupleExtensions
{
public static (T1, T2) ToTuple<T1, T2>(this T1 first, T2 second) => (first, second);
}