1#![feature(core_intrinsics, portable_simd)] 2#![cfg_attr(not(test), no_std)] 3 4mod scalar; 5mod shared; 6mod simd; 7 8#[cfg(test)] 9pub mod test; 10 11pub use shared::float::FastApproxFloat; 12pub use shared::int::FastExactInt;