Closed GrayJack closed 6 years ago
Just for completeness sake :smile:
Would it be as simple as putting i128 in the impl_from_prim!(signed i8, i16, i32, i64, isize); and u128 in the impl_from_prim!(unsigned u8, u16, u32, u64, usize);?
i128
impl_from_prim!(signed i8, i16, i32, i64, isize);
u128
impl_from_prim!(unsigned u8, u16, u32, u64, usize);
Thanks for the suggestion! This is now available in 0.5.1
Just for completeness sake :smile:
Would it be as simple as putting
i128
in theimpl_from_prim!(signed i8, i16, i32, i64, isize);
andu128
in theimpl_from_prim!(unsigned u8, u16, u32, u64, usize);
?