oxilean-std 0.1.2

OxiLean standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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,
}