mirror of
https://onedev.fprog.nl/AioNet
synced 2026-02-13 21:33:41 +01:00
Prepared but unimplemented Combinations method.
This commit is contained in:
parent
77cd3825db
commit
1b5effa51a
16
AioNet.Linq/ExtendedLinq.cs
Normal file
16
AioNet.Linq/ExtendedLinq.cs
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue