|
@@ -98,21 +98,25 @@ checked_impl!(CheckedDiv, checked_div, isize);
|
|
|
// and only have a handful of places where they want to perform checked ops;
|
|
|
// - This allows Wrapping<T> to implement PrimInt.
|
|
|
impl<T: CheckedAdd> CheckedAdd for Wrapping<T> where Wrapping<T>: Add<Output = Wrapping<T>>{
|
|
|
+ #[inline]
|
|
|
fn checked_add(&self, v: &Self) -> Option<Self> {
|
|
|
self.0.checked_add(&v.0).map(Wrapping)
|
|
|
}
|
|
|
}
|
|
|
impl<T: CheckedSub> CheckedSub for Wrapping<T> where Wrapping<T>: Sub<Output = Wrapping<T>> {
|
|
|
+ #[inline]
|
|
|
fn checked_sub(&self, v: &Self) -> Option<Self> {
|
|
|
self.0.checked_sub(&v.0).map(Wrapping)
|
|
|
}
|
|
|
}
|
|
|
impl<T: CheckedMul> CheckedMul for Wrapping<T> where Wrapping<T>: Mul<Output = Wrapping<T>>{
|
|
|
+ #[inline]
|
|
|
fn checked_mul(&self, v: &Self) -> Option<Self> {
|
|
|
self.0.checked_mul(&v.0).map(Wrapping)
|
|
|
}
|
|
|
}
|
|
|
impl<T: CheckedDiv> CheckedDiv for Wrapping<T> where Wrapping<T>: Div<Output = Wrapping<T>> {
|
|
|
+ #[inline]
|
|
|
fn checked_div(&self, v: &Self) -> Option<Self> {
|
|
|
self.0.checked_div(&v.0).map(Wrapping)
|
|
|
}
|