@@ -2154,7 +2154,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_be_bytes();
2154
2154
assert_eq!(bytes, " , $be_bytes, ");
2155
2155
```" ) ,
2156
2156
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2157
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2157
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2158
2158
#[ inline]
2159
2159
pub const fn to_be_bytes( self ) -> [ u8 ; mem:: size_of:: <Self >( ) ] {
2160
2160
self . to_be( ) . to_ne_bytes( )
@@ -2174,7 +2174,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_le_bytes();
2174
2174
assert_eq!(bytes, " , $le_bytes, ");
2175
2175
```" ) ,
2176
2176
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2177
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2177
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2178
2178
#[ inline]
2179
2179
pub const fn to_le_bytes( self ) -> [ u8 ; mem:: size_of:: <Self >( ) ] {
2180
2180
self . to_le( ) . to_ne_bytes( )
@@ -2209,7 +2209,7 @@ assert_eq!(
2209
2209
);
2210
2210
```" ) ,
2211
2211
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2212
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2212
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2213
2213
// SAFETY: const sound because integers are plain old datatypes so we can always
2214
2214
// transmute them to arrays of bytes
2215
2215
#[ allow_internal_unstable( const_fn_union) ]
@@ -2251,7 +2251,7 @@ fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
2251
2251
}
2252
2252
```" ) ,
2253
2253
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2254
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2254
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2255
2255
#[ inline]
2256
2256
pub const fn from_be_bytes( bytes: [ u8 ; mem:: size_of:: <Self >( ) ] ) -> Self {
2257
2257
Self :: from_be( Self :: from_ne_bytes( bytes) )
@@ -2284,7 +2284,7 @@ fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
2284
2284
}
2285
2285
```" ) ,
2286
2286
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2287
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2287
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2288
2288
#[ inline]
2289
2289
pub const fn from_le_bytes( bytes: [ u8 ; mem:: size_of:: <Self >( ) ] ) -> Self {
2290
2290
Self :: from_le( Self :: from_ne_bytes( bytes) )
@@ -2327,7 +2327,7 @@ fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
2327
2327
}
2328
2328
```" ) ,
2329
2329
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
2330
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
2330
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
2331
2331
// SAFETY: const sound because integers are plain old datatypes so we can always
2332
2332
// transmute to them
2333
2333
#[ allow_internal_unstable( const_fn_union) ]
@@ -4115,7 +4115,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_be_bytes();
4115
4115
assert_eq!(bytes, " , $be_bytes, ");
4116
4116
```" ) ,
4117
4117
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4118
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4118
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4119
4119
#[ inline]
4120
4120
pub const fn to_be_bytes( self ) -> [ u8 ; mem:: size_of:: <Self >( ) ] {
4121
4121
self . to_be( ) . to_ne_bytes( )
@@ -4135,7 +4135,7 @@ let bytes = ", $swap_op, stringify!($SelfT), ".to_le_bytes();
4135
4135
assert_eq!(bytes, " , $le_bytes, ");
4136
4136
```" ) ,
4137
4137
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4138
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4138
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4139
4139
#[ inline]
4140
4140
pub const fn to_le_bytes( self ) -> [ u8 ; mem:: size_of:: <Self >( ) ] {
4141
4141
self . to_le( ) . to_ne_bytes( )
@@ -4170,7 +4170,7 @@ assert_eq!(
4170
4170
);
4171
4171
```" ) ,
4172
4172
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4173
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4173
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4174
4174
// SAFETY: const sound because integers are plain old datatypes so we can always
4175
4175
// transmute them to arrays of bytes
4176
4176
#[ allow_internal_unstable( const_fn_union) ]
@@ -4212,7 +4212,7 @@ fn read_be_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
4212
4212
}
4213
4213
```" ) ,
4214
4214
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4215
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4215
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4216
4216
#[ inline]
4217
4217
pub const fn from_be_bytes( bytes: [ u8 ; mem:: size_of:: <Self >( ) ] ) -> Self {
4218
4218
Self :: from_be( Self :: from_ne_bytes( bytes) )
@@ -4245,7 +4245,7 @@ fn read_le_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
4245
4245
}
4246
4246
```" ) ,
4247
4247
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4248
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4248
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4249
4249
#[ inline]
4250
4250
pub const fn from_le_bytes( bytes: [ u8 ; mem:: size_of:: <Self >( ) ] ) -> Self {
4251
4251
Self :: from_le( Self :: from_ne_bytes( bytes) )
@@ -4288,7 +4288,7 @@ fn read_ne_", stringify!($SelfT), "(input: &mut &[u8]) -> ", stringify!($SelfT),
4288
4288
}
4289
4289
```" ) ,
4290
4290
#[ stable( feature = "int_to_from_bytes" , since = "1.32.0" ) ]
4291
- #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.43 .0" ) ]
4291
+ #[ rustc_const_stable( feature = "const_int_conversion" , since = "1.44 .0" ) ]
4292
4292
// SAFETY: const sound because integers are plain old datatypes so we can always
4293
4293
// transmute to them
4294
4294
#[ allow_internal_unstable( const_fn_union) ]
0 commit comments