-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
[libcore/cmp] Expand Ord/PartialOrd Derivable doc for enum types #42920
Conversation
Expand Derivable docblock section for `Ord` and `PartialOrd` to cover `enum` types, in addition to the existing language explaining it for `struct` types.
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @brson (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
Context: compare with Derivable section of |
Something slightly related here: at the moment, looking at the library docs and the book, it's not clear how For example, let's say we have
where we expect Then, in this case, the Do you think this is something that can be address in |
r? @BurntSushi |
@bors r+ |
📌 Commit 330dab8 has been approved by |
@behnam Seems like you probably just want to implement |
Thanks, @BurntSushi. Yeah, let me make a good example and file a separate issue. |
@bors rollup |
[libcore/cmp] Expand Ord/PartialOrd Derivable doc for enum types Expand Derivable docblock section for `Ord` and `PartialOrd` to cover `enum` types, in addition to the existing language explaining it for `struct` types.
Expand Derivable docblock section for
Ord
andPartialOrd
to coverenum
types, in addition to the existing language explaining it forstruct
types.