-
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
[std::cmp] add missing docs and provide an example #12956
Conversation
|
||
```rust | ||
// Our type. | ||
struct SketchyNum(int); |
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.
I would prefer this to be a normal struct like struct SketchyNum { num: int }
so that the implementation below can be
(self.num - other.num).abs() < 5
for clarity. (It does makes the assertions slightly uglier, but not extremely so.)
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.
Yeah, not bad at all.
This looks great! Could you squash the commits into one? Also, feel free to comment on the PR whenever you force-push, sadly github doesn't send out updates when that happens! |
Squished! |
Am I supposed to do something here? |
The test run failed on bors. It looks like some of the new documentation examples failed when tested. You can run the tests yourself via |
How do I see which tests failed on bors? None of the logs I see has anything to do with what I changed here... |
Bors left a comment on the commit (#12956 (comment)) and it's the link marked |
FWIW, I've rebased to the latest master. There, somebody'd added a special case for cfg0 and so it was missing a doc comment, and I've added one for it. Still compiling, though. |
Well, so much for that:
|
Ah sorry about that, looks like the dependencies are a bit off for the makefiles. Regardless, the travis build passed, which is now running tests, so I think this is good to go. |
/me crosses fingers |
This latest failure boils down to this, for example:
Is there an easy way to tell |
Just add a suffix, e.g. |
What have I changed, though, which caused this to break? |
Also still having trouble compiling locally:
So I'm about to send in another change and we'll see... |
From the looks of that error message I didn't push my last commit. I'll check in tomorrow. |
Just rebased again (now: 971c90248e978bf7). Still seeing that "native" error and haven't necessarily sorted everything out, yet, sadly... |
I would recommend running |
@@ -55,6 +76,19 @@ pub trait TotalEq: Eq { | |||
fn assert_receiver_is_total_eq(&self) {} | |||
} | |||
|
|||
/* |
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.
This block comment doesn't really make sense.
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.
Ah, true, but I'd been confused why the other had been inserted and then swapped with this. (Now I get it: we were waiting on another snapshot.)
Rebased and pushed 99fa22515, which went through |
/me crosses fingers |
Yay! Thanks @alexcrichton and @huonw and @thestinger. And @bors. |
Remove strange formatting in `Ordering` docs. I can't really fathom what the intent of the brackets is. The [original PR](rust-lang#12956) doesn't give any hints. I think it seems fine without them.
Remove strange formatting in `Ordering` docs. I can't really fathom what the intent of the brackets is. The [original PR](rust-lang#12956) doesn't give any hints. I think it seems fine without them.
Remove strange formatting in `Ordering` docs. I can't really fathom what the intent of the brackets is. The [original PR](rust-lang#12956) doesn't give any hints. I think it seems fine without them.
More methods and traits for `la_arena::ArenaMap` Continue of rust-lang#12931. Seems that I forgot some methods in the previous PR :( I also changed `ArenaMap::insert` to return the old value, to match the map-like collection API of std. **So this is a breaking change.** r? `@lnicola`
…ng#14332) Both lints share a lot of characteristics but were implemented in unrelated ways. This unifies them, saving around 100 SLOC in the process, and making one more test trigger the lint. Also, this removes useless blocks in suggestions. Close rust-lang#12956 changelog: none
No description provided.