fastnum2 0.3.2

fork of Fast decimal numbers library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{utils::assert_eq_size, *};

macro_rules! assert_impl {
    ($UINT: ident, $bits: literal) => {
        assert_eq_size!($UINT, [u64; { $bits / 64 }]);
    };
}

assert_impl!(U128, 128);
assert_impl!(U256, 256);
assert_impl!(U512, 512);
assert_impl!(U1024, 1024);