AioNet/AioNet.Linq/ExtendedLinq.cs

17 lines
347 B
C#
Raw Normal View History

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