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