oxilean_std/complex/complex_re_group.rs
1//! # Complex - re_group Methods
2//!
3//! This module contains method implementations for `Complex`.
4//!
5//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
6
7use super::complex_type::Complex;
8
9impl Complex {
10 /// Real part.
11 pub fn re(self) -> f64 {
12 self.re
13 }
14}