Uh oh!
There was an error while loading. Please reload this page.
[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.
rust-highfive
commented
Jun 27, 2017
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. |
behnam
commented
Jun 27, 2017
Context: compare with Derivable section of |
behnam
commented
Jun 27, 2017
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 |
arielb1
commented
Jun 27, 2017
r? @BurntSushi |
BurntSushi
commented
Jun 27, 2017
@bors r+ |
bors
commented
Jun 27, 2017
📌 Commit 330dab8 has been approved by |
BurntSushi
commented
Jun 27, 2017
@behnam Seems like you probably just want to implement |
behnam
commented
Jun 28, 2017
Thanks, @BurntSushi. Yeah, let me make a good example and file a separate issue. |
arielb1
commented
Jun 29, 2017
@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
OrdandPartialOrdto coverenumtypes, in addition to the existing language explaining it forstructtypes.