@@ -2110,7 +2110,6 @@ impl str {
21102110 /// [`to_uppercase`]: #method.to_uppercase
21112111 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.21.0" ) ]
21122112 #[ inline]
2113- #[ cfg( not( stage0) ) ]
21142113 pub fn to_ascii_uppercase ( & self ) -> String {
21152114 let mut bytes = self . as_bytes ( ) . to_vec ( ) ;
21162115 bytes. make_ascii_uppercase ( ) ;
@@ -2141,7 +2140,6 @@ impl str {
21412140 /// [`to_lowercase`]: #method.to_lowercase
21422141 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.21.0" ) ]
21432142 #[ inline]
2144- #[ cfg( not( stage0) ) ]
21452143 pub fn to_ascii_lowercase ( & self ) -> String {
21462144 let mut bytes = self . as_bytes ( ) . to_vec ( ) ;
21472145 bytes. make_ascii_lowercase ( ) ;
@@ -2163,7 +2161,6 @@ impl str {
21632161 /// ```
21642162 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.21.0" ) ]
21652163 #[ inline]
2166- #[ cfg( not( stage0) ) ]
21672164 pub fn eq_ignore_ascii_case ( & self , other : & str ) -> bool {
21682165 self . as_bytes ( ) . eq_ignore_ascii_case ( other. as_bytes ( ) )
21692166 }
@@ -2178,7 +2175,6 @@ impl str {
21782175 ///
21792176 /// [`to_ascii_uppercase`]: #method.to_ascii_uppercase
21802177 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.21.0" ) ]
2181- #[ cfg( not( stage0) ) ]
21822178 pub fn make_ascii_uppercase ( & mut self ) {
21832179 let me = unsafe { self . as_bytes_mut ( ) } ;
21842180 me. make_ascii_uppercase ( )
@@ -2194,7 +2190,6 @@ impl str {
21942190 ///
21952191 /// [`to_ascii_lowercase`]: #method.to_ascii_lowercase
21962192 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.21.0" ) ]
2197- #[ cfg( not( stage0) ) ]
21982193 pub fn make_ascii_lowercase ( & mut self ) {
21992194 let me = unsafe { self . as_bytes_mut ( ) } ;
22002195 me. make_ascii_lowercase ( )
0 commit comments