-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Add examples for LinkedList #34854
Add examples for LinkedList #34854
Conversation
|
/// let mut iter = list.iter(); | ||
/// assert_eq!(iter.next(), Some(&0)); | ||
/// assert_eq!(iter.next(), Some(&1)); | ||
/// assert_eq!(iter.next(), Some(&2)); |
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.
Values needed to be updated here to account for += 10
.
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.
Oh damn, thanks!
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 note comment still appears because it wasn't on the incorrect line. :p
65ce39c
to
0c9a6f6
Compare
@bors: r+ rollup |
📌 Commit 0c9a6f6 has been approved by |
⌛ Testing commit 0c9a6f6 with merge 3c54c36... |
💔 Test failed - auto-win-gnu-32-opt-rustbuild |
@bors: retry On Tue, Jul 19, 2016 at 9:44 PM, bors notifications@github.com wrote:
|
⌛ Testing commit 0c9a6f6 with merge 96ce340... |
💔 Test failed - auto-linux-64-cargotest |
@bors: retry On Wed, Jul 20, 2016 at 6:07 PM, bors notifications@github.com wrote:
|
…teveklabnik Add examples for LinkedList Part of rust-lang#29348. r? @steveklabnik
Part of #29348.
r? @steveklabnik