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(); + } + } +}