1#![allow(clippy::needless_late_init)]
11#![allow(clippy::redundant_guards)]
12#![allow(non_snake_case)]
13
14mod bid128;
15mod bid128_2_str_tables;
16mod bid128_2_str_macros;
17mod bid128_add;
18mod bid128_compare;
19mod bid128_div;
20mod bid128_fdim;
21mod bid128_fma;
22mod bid128_fmod;
23mod bid128_frexp;
24mod bid128_ilogb;
25mod bid128_ldexp;
26mod bid128_llquantexp;
27mod bid128_llrint;
28mod bid128_llround;
29mod bid128_logb;
30mod bid128_lrint;
31mod bid128_lround;
32mod bid128_minmax;
33mod bid128_modf;
34mod bid128_mul;
35mod bid128_nearbyint;
36mod bid128_next;
37mod bid128_nexttoward;
38mod bid128_noncomp;
39mod bid128_quantexp;
40mod bid128_quantize;
41mod bid128_quantum;
42mod bid128_rem;
43mod bid128_round_integral;
44mod bid128_scalbln;
45mod bid128_scalbn;
46mod bid128_sqrt;
47mod bid128_string;
48mod bid128_to_int32;
49mod bid128_to_int64;
50mod bid128_to_uint32;
51mod bid128_to_uint64;
52mod bid_b2d;
53mod bid_binarydecimal;
54mod bid_convert_data;
55mod bid_decimal_data;
56mod bid_div_macros;
57mod bid_dpd;
58mod bid_from_int;
59mod bid_inline_add;
60mod bid_internal;
61mod bid_round;
62mod bid_sqrt_macros;
63pub mod d128;
64
65#[cfg(feature = "serde")]
66pub mod serde;
67
68#[cfg(feature = "sqlx-postgres")]
69pub mod sqlx_postgres;