@@ -30,7 +30,7 @@ const NANOS_PER_MILLI: u32 = 1_000_000;
30
30
const NANOS_PER_MICRO : u32 = 1_000 ;
31
31
const MILLIS_PER_SEC : u64 = 1_000 ;
32
32
const MICROS_PER_SEC : u64 = 1_000_000 ;
33
- const MAX_NANOS_F64 : f64 = ( ( u64:: MAX as u128 + 1 ) * ( NANOS_PER_SEC as u128 ) - 1 ) as f64 ;
33
+ const MAX_NANOS_F64 : f64 = ( ( u64:: MAX as u128 + 1 ) * ( NANOS_PER_SEC as u128 ) ) as f64 ;
34
34
35
35
/// A `Duration` type to represent a span of time, typically used for system
36
36
/// timeouts.
@@ -472,7 +472,7 @@ impl Duration {
472
472
/// let dur = Duration::new(2, 700_000_000);
473
473
/// assert_eq!(dur.as_float_secs(), 2.7);
474
474
/// ```
475
- #[ unstable( feature = "duration_float" , issue = "0 " ) ]
475
+ #[ unstable( feature = "duration_float" , issue = "54361 " ) ]
476
476
#[ inline]
477
477
pub fn as_float_secs ( & self ) -> f64 {
478
478
( self . secs as f64 ) + ( self . nanos as f64 ) / ( NANOS_PER_SEC as f64 )
@@ -491,14 +491,14 @@ impl Duration {
491
491
/// let dur = Duration::from_float_secs(2.7);
492
492
/// assert_eq!(dur, Duration::new(2, 700_000_000));
493
493
/// ```
494
- #[ unstable( feature = "duration_float" , issue = "0 " ) ]
494
+ #[ unstable( feature = "duration_float" , issue = "54361 " ) ]
495
495
#[ inline]
496
496
pub fn from_float_secs ( secs : f64 ) -> Duration {
497
497
let nanos = secs * ( NANOS_PER_SEC as f64 ) ;
498
498
if !nanos. is_finite ( ) {
499
499
panic ! ( "got non-finite value when converting float to duration" ) ;
500
500
}
501
- if nanos > MAX_NANOS_F64 {
501
+ if nanos >= MAX_NANOS_F64 {
502
502
panic ! ( "overflow when converting float to duration" ) ;
503
503
}
504
504
if nanos < 0.0 {
@@ -525,7 +525,7 @@ impl Duration {
525
525
/// assert_eq!(dur.mul_f64(3.14), Duration::new(8, 478_000_000));
526
526
/// assert_eq!(dur.mul_f64(3.14e5), Duration::new(847_800, 0));
527
527
/// ```
528
- #[ unstable( feature = "duration_float" , issue = "0 " ) ]
528
+ #[ unstable( feature = "duration_float" , issue = "54361 " ) ]
529
529
#[ inline]
530
530
pub fn mul_f64 ( self , rhs : f64 ) -> Duration {
531
531
Duration :: from_float_secs ( rhs * self . as_float_secs ( ) )
@@ -546,7 +546,7 @@ impl Duration {
546
546
/// // note that truncation is used, not rounding
547
547
/// assert_eq!(dur.div_f64(3.14e5), Duration::new(0, 8_598));
548
548
/// ```
549
- #[ unstable( feature = "duration_float" , issue = "0 " ) ]
549
+ #[ unstable( feature = "duration_float" , issue = "54361 " ) ]
550
550
#[ inline]
551
551
pub fn div_f64 ( self , rhs : f64 ) -> Duration {
552
552
Duration :: from_float_secs ( self . as_float_secs ( ) / rhs)
@@ -563,7 +563,7 @@ impl Duration {
563
563
/// let dur2 = Duration::new(5, 400_000_000);
564
564
/// assert_eq!(dur1.div_duration(dur2), 0.5);
565
565
/// ```
566
- #[ unstable( feature = "duration_float" , issue = "0 " ) ]
566
+ #[ unstable( feature = "duration_float" , issue = "54361 " ) ]
567
567
#[ inline]
568
568
pub fn div_duration ( self , rhs : Duration ) -> f64 {
569
569
self . as_float_secs ( ) / rhs. as_float_secs ( )
@@ -611,7 +611,7 @@ impl Mul<u32> for Duration {
611
611
}
612
612
}
613
613
614
- #[ stable( feature = "symmetric_u32_duration_mul" , since = "1.30 .0" ) ]
614
+ #[ stable( feature = "symmetric_u32_duration_mul" , since = "1.31 .0" ) ]
615
615
impl Mul < Duration > for u32 {
616
616
type Output = Duration ;
617
617
0 commit comments