@@ -313,7 +313,6 @@ impl<T: 'static> LocalKey<Cell<T>> {
313
313
/// # Examples
314
314
///
315
315
/// ```
316
- /// #![feature(local_key_cell_methods)]
317
316
/// use std::cell::Cell;
318
317
///
319
318
/// thread_local! {
@@ -326,7 +325,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
326
325
///
327
326
/// assert_eq!(X.get(), 123);
328
327
/// ```
329
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
328
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
330
329
pub fn set ( & ' static self , value : T ) {
331
330
self . initialize_with ( Cell :: new ( value) , |value, cell| {
332
331
if let Some ( value) = value {
@@ -351,7 +350,6 @@ impl<T: 'static> LocalKey<Cell<T>> {
351
350
/// # Examples
352
351
///
353
352
/// ```
354
- /// #![feature(local_key_cell_methods)]
355
353
/// use std::cell::Cell;
356
354
///
357
355
/// thread_local! {
@@ -360,7 +358,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
360
358
///
361
359
/// assert_eq!(X.get(), 1);
362
360
/// ```
363
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
361
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
364
362
pub fn get ( & ' static self ) -> T
365
363
where
366
364
T : Copy ,
@@ -381,7 +379,6 @@ impl<T: 'static> LocalKey<Cell<T>> {
381
379
/// # Examples
382
380
///
383
381
/// ```
384
- /// #![feature(local_key_cell_methods)]
385
382
/// use std::cell::Cell;
386
383
///
387
384
/// thread_local! {
@@ -391,7 +388,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
391
388
/// assert_eq!(X.take(), Some(1));
392
389
/// assert_eq!(X.take(), None);
393
390
/// ```
394
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
391
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
395
392
pub fn take ( & ' static self ) -> T
396
393
where
397
394
T : Default ,
@@ -412,7 +409,6 @@ impl<T: 'static> LocalKey<Cell<T>> {
412
409
/// # Examples
413
410
///
414
411
/// ```
415
- /// #![feature(local_key_cell_methods)]
416
412
/// use std::cell::Cell;
417
413
///
418
414
/// thread_local! {
@@ -422,7 +418,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
422
418
/// assert_eq!(X.replace(2), 1);
423
419
/// assert_eq!(X.replace(3), 2);
424
420
/// ```
425
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
421
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
426
422
pub fn replace ( & ' static self , value : T ) -> T {
427
423
self . with ( |cell| cell. replace ( value) )
428
424
}
@@ -444,7 +440,6 @@ impl<T: 'static> LocalKey<RefCell<T>> {
444
440
/// # Example
445
441
///
446
442
/// ```
447
- /// #![feature(local_key_cell_methods)]
448
443
/// use std::cell::RefCell;
449
444
///
450
445
/// thread_local! {
@@ -453,7 +448,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
453
448
///
454
449
/// X.with_borrow(|v| assert!(v.is_empty()));
455
450
/// ```
456
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
451
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
457
452
pub fn with_borrow < F , R > ( & ' static self , f : F ) -> R
458
453
where
459
454
F : FnOnce ( & T ) -> R ,
@@ -476,7 +471,6 @@ impl<T: 'static> LocalKey<RefCell<T>> {
476
471
/// # Example
477
472
///
478
473
/// ```
479
- /// #![feature(local_key_cell_methods)]
480
474
/// use std::cell::RefCell;
481
475
///
482
476
/// thread_local! {
@@ -487,7 +481,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
487
481
///
488
482
/// X.with_borrow(|v| assert_eq!(*v, vec![1]));
489
483
/// ```
490
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
484
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
491
485
pub fn with_borrow_mut < F , R > ( & ' static self , f : F ) -> R
492
486
where
493
487
F : FnOnce ( & mut T ) -> R ,
@@ -511,7 +505,6 @@ impl<T: 'static> LocalKey<RefCell<T>> {
511
505
/// # Examples
512
506
///
513
507
/// ```
514
- /// #![feature(local_key_cell_methods)]
515
508
/// use std::cell::RefCell;
516
509
///
517
510
/// thread_local! {
@@ -524,7 +517,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
524
517
///
525
518
/// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
526
519
/// ```
527
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
520
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
528
521
pub fn set ( & ' static self , value : T ) {
529
522
self . initialize_with ( RefCell :: new ( value) , |value, cell| {
530
523
if let Some ( value) = value {
@@ -551,7 +544,6 @@ impl<T: 'static> LocalKey<RefCell<T>> {
551
544
/// # Examples
552
545
///
553
546
/// ```
554
- /// #![feature(local_key_cell_methods)]
555
547
/// use std::cell::RefCell;
556
548
///
557
549
/// thread_local! {
@@ -566,7 +558,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
566
558
///
567
559
/// X.with_borrow(|v| assert!(v.is_empty()));
568
560
/// ```
569
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
561
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
570
562
pub fn take ( & ' static self ) -> T
571
563
where
572
564
T : Default ,
@@ -586,7 +578,6 @@ impl<T: 'static> LocalKey<RefCell<T>> {
586
578
/// # Examples
587
579
///
588
580
/// ```
589
- /// #![feature(local_key_cell_methods)]
590
581
/// use std::cell::RefCell;
591
582
///
592
583
/// thread_local! {
@@ -598,7 +589,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
598
589
///
599
590
/// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
600
591
/// ```
601
- #[ unstable ( feature = "local_key_cell_methods" , issue = "92122 " ) ]
592
+ #[ stable ( feature = "local_key_cell_methods" , since = "CURRENT_RUSTC_VERSION " ) ]
602
593
pub fn replace ( & ' static self , value : T ) -> T {
603
594
self . with ( |cell| cell. replace ( value) )
604
595
}
0 commit comments