-
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
Implement cell::clone_ref #14189
Implement cell::clone_ref #14189
Conversation
@@ -186,6 +186,24 @@ impl<'b, T> Deref<T> for Ref<'b, T> { | |||
} | |||
} | |||
|
|||
/// Copy a `Ref`. The `RefCell` is already immutably borrowed, | |||
/// so this cannot fail. |
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.
Prevailing convention is one space after the period.
Also, did you intend for the second sentence to be part of the method summary? I would expect that to be in the description.
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.
Thanks; fixed.
Per discussion with @alexcrichton, this is a free function.
/// A `Clone` implementation would interfere with the widespread | ||
/// use of `r.borrow().clone()` to clone the contents of a `RefCell`. | ||
#[experimental] | ||
pub fn clone_ref<'b, T>(orig: &Ref<'b, T>) -> Ref<'b, T> { |
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 assume this doesn't just call orig.parent.borrow()
to avoid code bloat from fail!
?
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.
And to avoid checking if the borrow flag is set to WRITING
. LLVM can optimize
let y = x.get();
x.set(y + 1);
into a single inc
instruction.
Yay for free functions! |
…4191) ```rust let mut tmp = vec![1, 2, 3]; for b in &mut tmp { *b = !*b; } ``` must not suggest the invalid `tmp.fill(!*b)`. In addition, there is another commit which cleans up two function calls with no effect. Fix rust-lang#14189 changelog: [`manual_slice_fill`]: ensure that the initialization expression doesn't reference the iterator
Per discussion with @alexcrichton, this is a free function.