Skip to content

Commit be87650

Browse files
committed
Add augmented assignment operator impls for time types
1 parent 0dcc413 commit be87650

File tree

2 files changed

+58
-2
lines changed

2 files changed

+58
-2
lines changed

src/libstd/time/duration.rs

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

11-
use ops::{Add, Sub, Mul, Div};
11+
use ops::{Add, Sub, Mul, Div, AddAssign, SubAssign, MulAssign, DivAssign};
1212

1313
const NANOS_PER_SEC: u32 = 1_000_000_000;
1414
const NANOS_PER_MILLI: u32 = 1_000_000;
@@ -105,6 +105,13 @@ impl Add for Duration {
105105
}
106106
}
107107

108+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
109+
impl AddAssign for Duration {
110+
fn add_assign(&mut self, rhs: Duration) {
111+
*self = *self + rhs;
112+
}
113+
}
114+
108115
#[stable(feature = "duration", since = "1.3.0")]
109116
impl Sub for Duration {
110117
type Output = Duration;
@@ -124,6 +131,13 @@ impl Sub for Duration {
124131
}
125132
}
126133

134+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
135+
impl SubAssign for Duration {
136+
fn sub_assign(&mut self, rhs: Duration) {
137+
*self = *self - rhs;
138+
}
139+
}
140+
127141
#[stable(feature = "duration", since = "1.3.0")]
128142
impl Mul<u32> for Duration {
129143
type Output = Duration;
@@ -141,6 +155,13 @@ impl Mul<u32> for Duration {
141155
}
142156
}
143157

158+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
159+
impl MulAssign<u32> for Duration {
160+
fn mul_assign(&mut self, rhs: u32) {
161+
*self = *self * rhs;
162+
}
163+
}
164+
144165
#[stable(feature = "duration", since = "1.3.0")]
145166
impl Div<u32> for Duration {
146167
type Output = Duration;
@@ -155,6 +176,13 @@ impl Div<u32> for Duration {
155176
}
156177
}
157178

179+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
180+
impl DivAssign<u32> for Duration {
181+
fn div_assign(&mut self, rhs: u32) {
182+
*self = *self / rhs;
183+
}
184+
}
185+
158186
#[cfg(test)]
159187
mod tests {
160188
use super::Duration;

src/libstd/time/mod.rs

+29-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
use error::Error;
1616
use fmt;
17-
use ops::{Add, Sub};
17+
use ops::{Add, Sub, AddAssign, SubAssign};
1818
use sys::time;
1919
use sys_common::FromInner;
2020

@@ -122,6 +122,13 @@ impl Add<Duration> for Instant {
122122
}
123123
}
124124

125+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
126+
impl AddAssign<Duration> for Instant {
127+
fn add_assign(&mut self, other: Duration) {
128+
*self = *self + other;
129+
}
130+
}
131+
125132
#[stable(feature = "time2", since = "1.8.0")]
126133
impl Sub<Duration> for Instant {
127134
type Output = Instant;
@@ -131,6 +138,13 @@ impl Sub<Duration> for Instant {
131138
}
132139
}
133140

141+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
142+
impl SubAssign<Duration> for Instant {
143+
fn sub_assign(&mut self, other: Duration) {
144+
*self = *self - other;
145+
}
146+
}
147+
134148
#[stable(feature = "time2", since = "1.8.0")]
135149
impl Sub<Instant> for Instant {
136150
type Output = Duration;
@@ -204,6 +218,13 @@ impl Add<Duration> for SystemTime {
204218
}
205219
}
206220

221+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
222+
impl AddAssign<Duration> for SystemTime {
223+
fn add_assign(&mut self, other: Duration) {
224+
*self = *self + other;
225+
}
226+
}
227+
207228
#[stable(feature = "time2", since = "1.8.0")]
208229
impl Sub<Duration> for SystemTime {
209230
type Output = SystemTime;
@@ -213,6 +234,13 @@ impl Sub<Duration> for SystemTime {
213234
}
214235
}
215236

237+
#[stable(feature = "time_augmented_assignment", since = "1.9.0")]
238+
impl SubAssign<Duration> for SystemTime {
239+
fn sub_assign(&mut self, other: Duration) {
240+
*self = *self - other;
241+
}
242+
}
243+
216244
#[stable(feature = "time2", since = "1.8.0")]
217245
impl fmt::Debug for SystemTime {
218246
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

0 commit comments

Comments
 (0)