Trait Conjugate

Source
pub trait Conjugate {
    type Complex;
    type Real;

    // Required method
    fn conj(&self) -> Self::Complex;
}
Expand description

Required Associated Types§

Required Methods§

Source

fn conj(&self) -> Self::Complex

Implementations on Foreign Types§

Source§

impl Conjugate for f32

Source§

impl Conjugate for f64

Source§

impl Conjugate for i8

Source§

type Complex = Complex<i8>

Source§

type Real = i8

Source§

fn conj(&self) -> Self::Complex

Source§

impl Conjugate for i16

Source§

impl Conjugate for i32

Source§

impl Conjugate for i64

Source§

impl Conjugate for i128

Source§

impl Conjugate for isize

Source§

impl<T> Conjugate for Complex<T>
where T: Clone + Neg<Output = T> + Num,

Source§

type Complex = Complex<T>

Source§

type Real = T

Source§

fn conj(&self) -> Self::Complex

Implementors§