Skip to content

Commit c625b97

Browse files
authored
add tracking issue to cell_filter_map
1 parent e8757af commit c625b97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/cell.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
12831283
/// let b2: Result<Ref<u32>, _> = Ref::filter_map(b1, |v| v.get(1));
12841284
/// assert_eq!(*b2.unwrap(), 2);
12851285
/// ```
1286-
#[unstable(feature = "cell_filter_map", reason = "recently added", issue = "none")]
1286+
#[unstable(feature = "cell_filter_map", reason = "recently added", issue = "81061")]
12871287
#[inline]
12881288
pub fn filter_map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Result<Ref<'b, U>, Self>
12891289
where
@@ -1436,7 +1436,7 @@ impl<'b, T: ?Sized> RefMut<'b, T> {
14361436
///
14371437
/// assert_eq!(*c.borrow(), vec![1, 4, 3]);
14381438
/// ```
1439-
#[unstable(feature = "cell_filter_map", reason = "recently added", issue = "none")]
1439+
#[unstable(feature = "cell_filter_map", reason = "recently added", issue = "81061")]
14401440
#[inline]
14411441
pub fn filter_map<U: ?Sized, F>(orig: RefMut<'b, T>, f: F) -> Result<RefMut<'b, U>, Self>
14421442
where

0 commit comments

Comments
 (0)