#![cfg(feature = "dyn")]
#![cfg(feature = "unstable")]
use smallvec::SmallVec;
pub struct UintDyn {
_bit_len: usize,
_limbs: SmallVec<[u64; 2]>,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::Uint;
#[test]
fn test_sizes() {
dbg!(std::mem::size_of::<Uint<64, 2>>());
dbg!(std::mem::size_of::<Uint<64, 3>>());
dbg!(std::mem::size_of::<Vec<u64>>());
dbg!(std::mem::size_of::<UintDyn>());
}
}