//! Auto-generated module
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
/// A complex number z = re + im·i.
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct Complex {
/// Real part of the complex number.
pub re: f64,
/// Imaginary part of the complex number.
pub im: f64,
}