Skip to main content

oxilean_std/complex/
complex_type.rs

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