-
Notifications
You must be signed in to change notification settings - Fork 419
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -716,6 +716,60 @@ public static IEnumerable<TResult> Batch<TSource, TResult>(this IEnumerable<TSou | |
|
||
} | ||
|
||
/// <summary><c>BindByIndex</c> extension.</summary> | ||
|
||
[GeneratedCode("MoreLinq.ExtensionsGenerator", "1.0.0.0")] | ||
public static partial class BindByIndexExtension | ||
Check failure on line 722 in MoreLinq/Extensions.g.cs GitHub Actions / build (ubuntu-22.04)
|
||
{ | ||
/// <summary> | ||
/// TODO Complete documentation | ||
/// </summary> | ||
/// <typeparam name="T"> | ||
/// Type of elements in <paramref name="source"/> sequence.</typeparam> | ||
/// <typeparam name="TResult">Type of result elements returned.</typeparam> | ||
/// <param name="source">The source sequence.</param> | ||
/// <param name="indicies">The sequence of indicies.</param> | ||
/// <param name="missingSelector"> | ||
/// TODO Complete documentation | ||
/// </param> | ||
/// <param name="resultSelector"> | ||
/// TODO Complete documentation | ||
/// </param> | ||
/// <returns> | ||
/// TODO Complete documentation | ||
/// </returns> | ||
|
||
public static IEnumerable<TResult> | ||
BindByIndex<T, TResult>(this IEnumerable<T> source, IEnumerable<int> indicies, | ||
Check failure on line 743 in MoreLinq/Extensions.g.cs GitHub Actions / build (ubuntu-22.04)
|
||
Func<int, TResult> missingSelector, Func<T, int, TResult> resultSelector) => MoreEnumerable. BindByIndex(source, indicies, missingSelector, resultSelector); | ||
|
||
/// <summary> | ||
/// TODO Complete documentation | ||
/// </summary> | ||
/// <typeparam name="T"> | ||
/// Type of elements in <paramref name="source"/> sequence.</typeparam> | ||
/// <typeparam name="TResult">Type of result elements returned.</typeparam> | ||
/// <param name="source">The source sequence.</param> | ||
/// <param name="indicies">The sequence of indicies.</param> | ||
/// <param name="lookBackSize">Size of look-back buffer.</param> | ||
/// <param name="missingSelector"> | ||
/// TODO Complete documentation | ||
/// </param> | ||
/// <param name="resultSelector"> | ||
/// TODO Complete documentation | ||
/// </param> | ||
/// <returns> | ||
/// TODO Complete documentation | ||
/// </returns> | ||
|
||
public static IEnumerable<TResult> | ||
BindByIndex<T, TResult>(this IEnumerable<T> source, IEnumerable<int> indicies, | ||
int lookBackSize, | ||
Func<int, TResult> missingSelector, | ||
Func<T, int, TResult> resultSelector) => MoreEnumerable. BindByIndex(source, indicies, lookBackSize, missingSelector, resultSelector); | ||
|
||
} | ||
|
||
/// <summary><c>Cartesian</c> extension.</summary> | ||
|
||
[GeneratedCode("MoreLinq.ExtensionsGenerator", "1.0.0.0")] | ||
|