@@ -482,7 +482,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
482
482
///
483
483
/// assert_eq!(X.get(), 123);
484
484
/// ```
485
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
485
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
486
486
pub fn set ( & ' static self , value : T ) {
487
487
self . initialize_with ( Cell :: new ( value) , |init, cell| {
488
488
if let Some ( init) = init {
@@ -513,7 +513,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
513
513
///
514
514
/// assert_eq!(X.get(), 1);
515
515
/// ```
516
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
516
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
517
517
pub fn get ( & ' static self ) -> T
518
518
where
519
519
T : Copy ,
@@ -544,7 +544,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
544
544
/// assert_eq!(X.take(), Some(1));
545
545
/// assert_eq!(X.take(), None);
546
546
/// ```
547
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
547
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
548
548
pub fn take ( & ' static self ) -> T
549
549
where
550
550
T : Default ,
@@ -575,7 +575,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
575
575
/// assert_eq!(X.replace(2), 1);
576
576
/// assert_eq!(X.replace(3), 2);
577
577
/// ```
578
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
578
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
579
579
pub fn replace ( & ' static self , value : T ) -> T {
580
580
self . with ( |cell| cell. replace ( value) )
581
581
}
@@ -606,7 +606,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
606
606
///
607
607
/// X.with_borrow(|v| assert!(v.is_empty()));
608
608
/// ```
609
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
609
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
610
610
pub fn with_borrow < F , R > ( & ' static self , f : F ) -> R
611
611
where
612
612
F : FnOnce ( & T ) -> R ,
@@ -640,7 +640,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
640
640
///
641
641
/// X.with_borrow(|v| assert_eq!(*v, vec![1]));
642
642
/// ```
643
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
643
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
644
644
pub fn with_borrow_mut < F , R > ( & ' static self , f : F ) -> R
645
645
where
646
646
F : FnOnce ( & mut T ) -> R ,
@@ -675,7 +675,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
675
675
///
676
676
/// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
677
677
/// ```
678
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
678
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
679
679
pub fn set ( & ' static self , value : T ) {
680
680
self . initialize_with ( RefCell :: new ( value) , |init, cell| {
681
681
if let Some ( init) = init {
@@ -714,7 +714,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
714
714
///
715
715
/// X.with_borrow(|v| assert!(v.is_empty()));
716
716
/// ```
717
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
717
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
718
718
pub fn take ( & ' static self ) -> T
719
719
where
720
720
T : Default ,
@@ -746,7 +746,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
746
746
///
747
747
/// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
748
748
/// ```
749
- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
749
+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
750
750
pub fn replace ( & ' static self , value : T ) -> T {
751
751
self . with ( |cell| cell. replace ( value) )
752
752
}
0 commit comments