Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RankBy and equivalent elements #826

Open
cleoold opened this issue Aug 20, 2021 · 0 comments
Open

RankBy and equivalent elements #826

cleoold opened this issue Aug 20, 2021 · 0 comments

Comments

@cleoold
Copy link

cleoold commented Aug 20, 2021

I noticed that the RankBy method does not group equivalent elements in one rank as in the Rank method:

using static MoreLinq.Extensions.RankByExtension;

var strs = new string[] { "aaa", "xyz", "aaaa" };
var q = strs.RankBy(s => s.Length);
foreach (var i in q)
    Console.WriteLine(i);

output:

2
3
1

This also happens when passing both key selector and comparer to RankBy. There are no tests for this situation in the test file. Is this a bug or expected behaviour?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant