@@ -569,7 +569,7 @@ impl char {
569569 /// assert_eq!(len, tokyo.len());
570570 /// ```
571571 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
572- #[ rustc_const_stable( feature = "const_char_len_utf" , since = "1.50 .0" ) ]
572+ #[ rustc_const_stable( feature = "const_char_len_utf" , since = "1.52 .0" ) ]
573573 #[ inline]
574574 pub const fn len_utf8 ( self ) -> usize {
575575 len_utf8 ( self as u32 )
@@ -595,7 +595,7 @@ impl char {
595595 /// assert_eq!(len, 2);
596596 /// ```
597597 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
598- #[ rustc_const_stable( feature = "const_char_len_utf" , since = "1.50 .0" ) ]
598+ #[ rustc_const_stable( feature = "const_char_len_utf" , since = "1.52 .0" ) ]
599599 #[ inline]
600600 pub const fn len_utf16 ( self ) -> usize {
601601 let ch = self as u32 ;
@@ -1088,7 +1088,7 @@ impl char {
10881088 /// [`make_ascii_uppercase()`]: #method.make_ascii_uppercase
10891089 /// [`to_uppercase()`]: #method.to_uppercase
10901090 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1091- #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.50 .0" ) ]
1091+ #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.52 .0" ) ]
10921092 #[ inline]
10931093 pub const fn to_ascii_uppercase ( & self ) -> char {
10941094 if self . is_ascii_lowercase ( ) {
@@ -1121,7 +1121,7 @@ impl char {
11211121 /// [`make_ascii_lowercase()`]: #method.make_ascii_lowercase
11221122 /// [`to_lowercase()`]: #method.to_lowercase
11231123 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1124- #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.50 .0" ) ]
1124+ #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.52 .0" ) ]
11251125 #[ inline]
11261126 pub const fn to_ascii_lowercase ( & self ) -> char {
11271127 if self . is_ascii_uppercase ( ) {
@@ -1147,7 +1147,7 @@ impl char {
11471147 /// assert!(!upper_a.eq_ignore_ascii_case(&lower_z));
11481148 /// ```
11491149 #[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
1150- #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.50 .0" ) ]
1150+ #[ rustc_const_stable( feature = "const_ascii_methods_on_intrinsics" , since = "1.52 .0" ) ]
11511151 #[ inline]
11521152 pub const fn eq_ignore_ascii_case ( & self , other : & char ) -> bool {
11531153 self . to_ascii_lowercase ( ) == other. to_ascii_lowercase ( )
0 commit comments