Skip to content

Commit

Permalink
Refresh generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Jan 3, 2025
1 parent 20689be commit 615bfd1
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions MoreLinq/Extensions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Symbol 'BindByIndexExtension' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)
{
/// <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

View workflow job for this annotation

GitHub Actions / build (ubuntu-22.04)

Symbol 'BindByIndex<T, TResult>' is not part of the declared public API (https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md)
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")]
Expand Down

0 comments on commit 615bfd1

Please sign in to comment.