1 2 3 4 5 6 7 8
//! Dual numbers with rectangular and polar representations. #![cfg_attr(not(feature = "std"), no_std)] pub mod polar; pub mod rectangular; pub use polar::*; pub use rectangular::*;