@@ -11,7 +11,7 @@ use crate::ops::Deref;
11
11
/// # Examples
12
12
///
13
13
/// ```
14
- /// #![feature(once_cell )]
14
+ /// #![feature(lazy_cell )]
15
15
///
16
16
/// use std::cell::LazyCell;
17
17
///
@@ -29,7 +29,7 @@ use crate::ops::Deref;
29
29
/// // 92
30
30
/// // 92
31
31
/// ```
32
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
32
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
33
33
pub struct LazyCell < T , F = fn ( ) -> T > {
34
34
cell : OnceCell < T > ,
35
35
init : Cell < Option < F > > ,
@@ -41,7 +41,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
41
41
/// # Examples
42
42
///
43
43
/// ```
44
- /// #![feature(once_cell )]
44
+ /// #![feature(lazy_cell )]
45
45
///
46
46
/// use std::cell::LazyCell;
47
47
///
@@ -52,7 +52,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
52
52
/// assert_eq!(&*lazy, "HELLO, WORLD!");
53
53
/// ```
54
54
#[ inline]
55
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
55
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
56
56
pub const fn new ( init : F ) -> LazyCell < T , F > {
57
57
LazyCell { cell : OnceCell :: new ( ) , init : Cell :: new ( Some ( init) ) }
58
58
}
@@ -65,7 +65,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
65
65
/// # Examples
66
66
///
67
67
/// ```
68
- /// #![feature(once_cell )]
68
+ /// #![feature(lazy_cell )]
69
69
///
70
70
/// use std::cell::LazyCell;
71
71
///
@@ -75,7 +75,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
75
75
/// assert_eq!(&*lazy, &92);
76
76
/// ```
77
77
#[ inline]
78
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
78
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
79
79
pub fn force ( this : & LazyCell < T , F > ) -> & T {
80
80
this. cell . get_or_init ( || match this. init . take ( ) {
81
81
Some ( f) => f ( ) ,
@@ -84,7 +84,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
84
84
}
85
85
}
86
86
87
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
87
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
88
88
impl < T , F : FnOnce ( ) -> T > Deref for LazyCell < T , F > {
89
89
type Target = T ;
90
90
#[ inline]
@@ -93,7 +93,7 @@ impl<T, F: FnOnce() -> T> Deref for LazyCell<T, F> {
93
93
}
94
94
}
95
95
96
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
96
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
97
97
impl < T : Default > Default for LazyCell < T > {
98
98
/// Creates a new lazy value using `Default` as the initializing function.
99
99
#[ inline]
@@ -102,7 +102,7 @@ impl<T: Default> Default for LazyCell<T> {
102
102
}
103
103
}
104
104
105
- #[ unstable( feature = "once_cell " , issue = "74465 " ) ]
105
+ #[ unstable( feature = "lazy_cell " , issue = "109736 " ) ]
106
106
impl < T : fmt:: Debug , F > fmt:: Debug for LazyCell < T , F > {
107
107
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
108
108
f. debug_struct ( "Lazy" ) . field ( "cell" , & self . cell ) . field ( "init" , & ".." ) . finish ( )
0 commit comments