oxilean_std/complex/complex_im_group.rs
1//! # Complex - im_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 /// Imaginary part.
11 pub fn im(self) -> f64 {
12 self.im
13 }
14}