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