-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Renaming eq_by to related_by #100795
Comments
FWIW, this variant is usually spelled For comparing two iterators, the
Keep in mind that this may return |
I have that in mind, that's why I said equivalent, instead of equal, however, I should've been more specific so, I'll just fix it right now.
Well, in that case, eq_by_key is also fine, because it does convey similar meaning, just eq_by by itself, checking for relations, seems a bit misleading, though it's not catastrophically misleading, because one look at docs and you'd know what it's doing but, still, I do think that this method should be renamed to related_by, instead of eq_by |
Take a look at the following code [Rust Playground]
eq_by name suggests that the function can only be used for checking if the two iterators are equal however, as you can see, the function can check for any relation, not just equality thus it should be renamed to related_by.
Instead another function named eq_by/eq_by_key should be created similar to this but, instead of taking a closure that takes two inputs of same type, it should take in one input, and return a generic data type which implements PartialOrd, then this data can be checked for equality.
Essentially, this eq_by/eq_by_key should be equivalent to
a.iter().count() == b.iter().count() && a.iter().zip(b.iter()).all(|(ele_a, ele_b)| fn(ele_a) == fn(ele_b))
where a and b are two generic types that implement Iterator, and, fn is the function for generating argument, which is checked for equality instead.Edit : Changed just eq_by to eq_by/eq_by_key and added a more specific description of eq_by/eq_by_key method as suggested by @timvermeulen.
The text was updated successfully, but these errors were encountered: