Skip to content

Commit

Permalink
Refresh extension wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Dec 20, 2022
1 parent 89dde84 commit 5782136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MoreLinq/Extensions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4634,7 +4634,7 @@ public static IEnumerable<int> Rank<TSource>(this IEnumerable<TSource> source)
/// <param name="comparer">A object that defines comparison semantics for the elements in the sequence</param>
/// <returns>A sequence of position integers representing the ranks of the corresponding items in the sequence</returns>

public static IEnumerable<int> Rank<TSource>(this IEnumerable<TSource> source, IComparer<TSource> comparer)
public static IEnumerable<int> Rank<TSource>(this IEnumerable<TSource> source, IComparer<TSource>? comparer)
=> MoreEnumerable.Rank(source, comparer);

}
Expand Down

0 comments on commit 5782136

Please sign in to comment.