Trait vecmat::traits::Conj[][src]

pub trait Conj {
    fn conj(self) -> Self;
}

Complex conjugate trait.

Required methods

fn conj(self) -> Self[src]

Perform complex conjugation.

Loading content...

Implementations on Foreign Types

impl Conj for f32[src]

fn conj(self) -> Self[src]

impl Conj for f64[src]

fn conj(self) -> Self[src]

Loading content...

Implementors

impl<T> Conj for Complex<T> where
    T: Neg<Output = T>, 
[src]

fn conj(self) -> Self[src]

impl<T> Conj for Quaternion<T> where
    T: Neg<Output = T>, 
[src]

fn conj(self) -> Self[src]

Loading content...