@@ -255,7 +255,7 @@ Basic usage:
255
255
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MIN, " , stringify!( $Min) , ");" ,
256
256
$EndFeature, "
257
257
```" ) ,
258
- #[ stable( feature = "assoc_int_consts" , since = "1.41 .0" ) ]
258
+ #[ stable( feature = "assoc_int_consts" , since = "1.42 .0" ) ]
259
259
pub const MIN : Self = !0 ^ ( ( !0 as $UnsignedT) >> 1 ) as Self ;
260
260
}
261
261
@@ -270,14 +270,14 @@ Basic usage:
270
270
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MAX, " , stringify!( $Max) , ");" ,
271
271
$EndFeature, "
272
272
```" ) ,
273
- #[ stable( feature = "assoc_int_consts" , since = "1.41 .0" ) ]
273
+ #[ stable( feature = "assoc_int_consts" , since = "1.42 .0" ) ]
274
274
pub const MAX : Self = !Self :: MIN ;
275
275
}
276
276
277
277
doc_comment! {
278
278
"Returns the smallest value that can be represented by this integer type." ,
279
279
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
280
- #[ rustc_deprecated( since = "1.41 .0" , reason = "replaced by associated constant MIN" ) ]
280
+ #[ rustc_deprecated( since = "1.42 .0" , reason = "replaced by associated constant MIN" ) ]
281
281
#[ inline( always) ]
282
282
#[ rustc_promotable]
283
283
#[ rustc_const_stable( feature = "const_min_value" , since = "1.32.0" ) ]
@@ -289,7 +289,7 @@ $EndFeature, "
289
289
doc_comment! {
290
290
"Returns the largest value that can be represented by this integer type." ,
291
291
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
292
- #[ rustc_deprecated( since = "1.41 .0" , reason = "replaced by associated constant MAX" ) ]
292
+ #[ rustc_deprecated( since = "1.42 .0" , reason = "replaced by associated constant MAX" ) ]
293
293
#[ inline( always) ]
294
294
#[ rustc_promotable]
295
295
#[ rustc_const_stable( feature = "const_max_value" , since = "1.32.0" ) ]
@@ -2362,7 +2362,7 @@ Basic usage:
2362
2362
```
2363
2363
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MIN, 0);" , $EndFeature, "
2364
2364
```" ) ,
2365
- #[ stable( feature = "assoc_int_consts" , since = "1.41 .0" ) ]
2365
+ #[ stable( feature = "assoc_int_consts" , since = "1.42 .0" ) ]
2366
2366
pub const MIN : Self = 0 ;
2367
2367
}
2368
2368
@@ -2377,14 +2377,14 @@ Basic usage:
2377
2377
" , $Feature, "assert_eq!(" , stringify!( $SelfT) , "::MAX, " , stringify!( $MaxV) , ");" ,
2378
2378
$EndFeature, "
2379
2379
```" ) ,
2380
- #[ stable( feature = "assoc_int_consts" , since = "1.41 .0" ) ]
2380
+ #[ stable( feature = "assoc_int_consts" , since = "1.42 .0" ) ]
2381
2381
pub const MAX : Self = !0 ;
2382
2382
}
2383
2383
2384
2384
doc_comment! {
2385
2385
"Returns the smallest value that can be represented by this integer type." ,
2386
2386
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2387
- #[ rustc_deprecated( since = "1.41 .0" , reason = "replaced by associated constant MIN" ) ]
2387
+ #[ rustc_deprecated( since = "1.42 .0" , reason = "replaced by associated constant MIN" ) ]
2388
2388
#[ rustc_promotable]
2389
2389
#[ inline( always) ]
2390
2390
#[ rustc_const_stable( feature = "const_max_value" , since = "1.32.0" ) ]
@@ -2394,7 +2394,7 @@ $EndFeature, "
2394
2394
doc_comment! {
2395
2395
"Returns the largest value that can be represented by this integer type." ,
2396
2396
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2397
- #[ rustc_deprecated( since = "1.41 .0" , reason = "replaced by associated constant MAX" ) ]
2397
+ #[ rustc_deprecated( since = "1.42 .0" , reason = "replaced by associated constant MAX" ) ]
2398
2398
#[ rustc_promotable]
2399
2399
#[ inline( always) ]
2400
2400
#[ rustc_const_stable( feature = "const_max_value" , since = "1.32.0" ) ]
0 commit comments