Trait 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,