Added impls of `Saturating…` for `i128` and `u128`

This commit is contained in:
Vincent Esche 2018-04-09 11:10:57 +02:00
parent b44666183d
commit 234706fb97
1 changed files with 2 additions and 0 deletions

View File

@ -26,3 +26,5 @@ macro_rules! saturating_impl {
}
saturating_impl!(Saturating for isize usize i8 u8 i16 u16 i32 u32 i64 u64);
#[cfg(feature = "i128")]
saturating_impl!(Saturating for i128 u128);