Prepared but unimplemented Combinations method.

This commit is contained in:
Filip Strajnar 2024-05-07 18:04:49 +02:00
parent 77cd3825db
commit 1b5effa51a

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace AioNet.Linq
{
public static class ExtendedLinq
{
public static IEnumerable<IEnumerable<T>> Combinations<T>(
this IEnumerable<T> source,
int subsequenceLength
)
{
throw new NotImplementedException();
}
}
}