We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5383205 commit 9618299Copy full SHA for 9618299
src/libcore/option.rs
@@ -788,7 +788,7 @@ impl<'a, T: Clone> Option<&'a mut T> {
788
/// let cloned = opt_x.cloned();
789
/// assert_eq!(cloned, Some(12));
790
/// ```
791
- #[unstable(feature = "option_ref_mut_cloned", issue = "0")]
+ #[unstable(feature = "option_ref_mut_cloned", issue = "43738")]
792
pub fn cloned(self) -> Option<T> {
793
self.map(|t| t.clone())
794
}
0 commit comments