-
Notifications
You must be signed in to change notification settings - Fork 193
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
Vec - PartialEq where Rhs is the Vec #303
Vec - PartialEq where Rhs is the Vec #303
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome addition, thanks!
Should I also add a Changelog entry because I see that the CI is failing? |
the changelog being missing is not a showstopper -- the CI check can be skipped. if you can update the changelog in this PR, that'd be great |
bors merge |
Build succeeded: |
v0.7.16 has been published and includes these changes |
I was using the Vec for tests and initially, I was confused because I saw the impl for PartialEq but then I realized that PartialEq with Rhs of Vec was not implemented.
These impls are not mandatory but might help other people when using Vec on Rhs.
PS: Amazing crate btw, thanks you for the awesome work!