Trait concision_core::traits::math::IntoComplex

source ·
pub trait IntoComplex: AsComplex {
    // Provided methods
    fn into_complex(self, real: bool) -> Complex<Self::Real>
       where Self: Sized { ... }
    fn into_re(self) -> Complex<Self::Real>
       where Self: Sized { ... }
}

Provided Methods§

source

fn into_complex(self, real: bool) -> Complex<Self::Real>
where Self: Sized,

source

fn into_re(self) -> Complex<Self::Real>
where Self: Sized,

Implementors§

source§

impl<T> IntoComplex for T
where T: AsComplex,