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