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