Skip to content

Commit 2263d1b

Browse files
committed
Auto merge of #38712 - clarcharr:duration_sum, r=sfackler
Sum for Duration Implemented the `Sum` trait for `Duration`. Seems reasonable.
2 parents c8af93f + 03b66ea commit 2263d1b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libstd/time/duration.rs

+15
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use iter::Sum;
1112
use ops::{Add, Sub, Mul, Div, AddAssign, SubAssign, MulAssign, DivAssign};
1213

1314
const NANOS_PER_SEC: u32 = 1_000_000_000;
@@ -356,6 +357,20 @@ impl DivAssign<u32> for Duration {
356357
}
357358
}
358359

360+
#[stable(feature = "duration_sum", since = "1.16.0")]
361+
impl Sum for Duration {
362+
fn sum<I: Iterator<Item=Duration>>(iter: I) -> Duration {
363+
iter.fold(Duration::new(0, 0), |a, b| a + b)
364+
}
365+
}
366+
367+
#[stable(feature = "duration_sum", since = "1.16.0")]
368+
impl<'a> Sum<&'a Duration> for Duration {
369+
fn sum<I: Iterator<Item=&'a Duration>>(iter: I) -> Duration {
370+
iter.fold(Duration::new(0, 0), |a, b| a + *b)
371+
}
372+
}
373+
359374
#[cfg(test)]
360375
mod tests {
361376
use super::Duration;

0 commit comments

Comments
 (0)