Added impls of `PrimInt` for `i128` and `u128`

This commit is contained in:
Vincent Esche 2018-04-09 11:10:45 +02:00
parent 62723f6f3a
commit bc19c34934
1 changed files with 4 additions and 0 deletions

View File

@ -368,9 +368,13 @@ prim_int_impl!(u8, i8, u8);
prim_int_impl!(u16, i16, u16);
prim_int_impl!(u32, i32, u32);
prim_int_impl!(u64, i64, u64);
#[cfg(feature = "i128")]
prim_int_impl!(u128, i128, u128);
prim_int_impl!(usize, isize, usize);
prim_int_impl!(i8, i8, u8);
prim_int_impl!(i16, i16, u16);
prim_int_impl!(i32, i32, u32);
prim_int_impl!(i64, i64, u64);
#[cfg(feature = "i128")]
prim_int_impl!(i128, i128, u128);
prim_int_impl!(isize, isize, usize);