fastnum 0.7.4

Fast decimal numbers library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
macro_rules! to_str_impl {
    ($Ty: ident, $sign: ident, $Int: ident) => {
        #[doc = doc::convert::to_str_radix!($sign 256)]
        #[must_use = doc::must_use_op!()]
        #[inline(always)]
        pub fn to_str_radix(&self, radix: u32) -> String {
            self.0.to_str_radix(radix)
        }
    };
}

pub(crate) use to_str_impl;