1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Precision change for absolute intervals and bounds pub mod bound; pub mod interval; #[cfg(test)] mod bound_tests; #[cfg(test)] mod interval_tests; #[doc(inline)] pub use bound::PreciseAbsBound; #[doc(inline)] pub use interval::PreciseAbsInterval;