Skip to content

Commit dee08ba

Browse files
authored
Rollup merge of #61797 - Thomasdezeeuw:stablise-weak_ptr_eq, r=RalfJung
Stabilise weak_ptr_eq Implemented in #55987. Closes #55981.
2 parents ca3766e + 307804a commit dee08ba

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

src/liballoc/rc.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -1832,8 +1832,9 @@ impl<T: ?Sized> Weak<T> {
18321832
}
18331833
}
18341834

1835-
/// Returns `true` if the two `Weak`s point to the same value (not just values
1836-
/// that compare as equal).
1835+
/// Returns `true` if the two `Weak`s point to the same value (not just
1836+
/// values that compare as equal), or if both don't point to any value
1837+
/// (because they were created with `Weak::new()`).
18371838
///
18381839
/// # Notes
18391840
///
@@ -1843,7 +1844,6 @@ impl<T: ?Sized> Weak<T> {
18431844
/// # Examples
18441845
///
18451846
/// ```
1846-
/// #![feature(weak_ptr_eq)]
18471847
/// use std::rc::Rc;
18481848
///
18491849
/// let first_rc = Rc::new(5);
@@ -1861,7 +1861,6 @@ impl<T: ?Sized> Weak<T> {
18611861
/// Comparing `Weak::new`.
18621862
///
18631863
/// ```
1864-
/// #![feature(weak_ptr_eq)]
18651864
/// use std::rc::{Rc, Weak};
18661865
///
18671866
/// let first = Weak::new();
@@ -1873,7 +1872,7 @@ impl<T: ?Sized> Weak<T> {
18731872
/// assert!(!first.ptr_eq(&third));
18741873
/// ```
18751874
#[inline]
1876-
#[unstable(feature = "weak_ptr_eq", issue = "55981")]
1875+
#[stable(feature = "weak_ptr_eq", since = "1.39.0")]
18771876
pub fn ptr_eq(&self, other: &Self) -> bool {
18781877
self.ptr.as_ptr() == other.ptr.as_ptr()
18791878
}

src/liballoc/sync.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -1550,19 +1550,18 @@ impl<T: ?Sized> Weak<T> {
15501550
}
15511551
}
15521552

1553-
/// Returns `true` if the two `Weak`s point to the same value (not just values
1554-
/// that compare as equal).
1553+
/// Returns `true` if the two `Weak`s point to the same value (not just
1554+
/// values that compare as equal), or if both don't point to any value
1555+
/// (because they were created with `Weak::new()`).
15551556
///
15561557
/// # Notes
15571558
///
15581559
/// Since this compares pointers it means that `Weak::new()` will equal each
15591560
/// other, even though they don't point to any value.
15601561
///
1561-
///
15621562
/// # Examples
15631563
///
15641564
/// ```
1565-
/// #![feature(weak_ptr_eq)]
15661565
/// use std::sync::Arc;
15671566
///
15681567
/// let first_rc = Arc::new(5);
@@ -1580,7 +1579,6 @@ impl<T: ?Sized> Weak<T> {
15801579
/// Comparing `Weak::new`.
15811580
///
15821581
/// ```
1583-
/// #![feature(weak_ptr_eq)]
15841582
/// use std::sync::{Arc, Weak};
15851583
///
15861584
/// let first = Weak::new();
@@ -1592,7 +1590,7 @@ impl<T: ?Sized> Weak<T> {
15921590
/// assert!(!first.ptr_eq(&third));
15931591
/// ```
15941592
#[inline]
1595-
#[unstable(feature = "weak_ptr_eq", issue = "55981")]
1593+
#[stable(feature = "weak_ptr_eq", since = "1.39.0")]
15961594
pub fn ptr_eq(&self, other: &Self) -> bool {
15971595
self.ptr.as_ptr() == other.ptr.as_ptr()
15981596
}

0 commit comments

Comments
 (0)