pub type Complex32 = Complex<f32>;
pub struct Complex32 { pub re: f32, pub im: f32, }
re: f32
im: f32