From 1b5effa51accaac7fe939a56d9f9d4263bcd433c Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Tue, 7 May 2024 18:04:49 +0200 Subject: [PATCH] Prepared but unimplemented Combinations method. --- AioNet.Linq/ExtendedLinq.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 AioNet.Linq/ExtendedLinq.cs diff --git a/AioNet.Linq/ExtendedLinq.cs b/AioNet.Linq/ExtendedLinq.cs new file mode 100644 index 0000000..0145f42 --- /dev/null +++ b/AioNet.Linq/ExtendedLinq.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; + +namespace AioNet.Linq +{ + public static class ExtendedLinq + { + public static IEnumerable> Combinations( + this IEnumerable source, + int subsequenceLength + ) + { + throw new NotImplementedException(); + } + } +}