Trait basic_dsp_vector::NumberSpace[][src]

pub trait NumberSpace: Debug + PartialEq + Clone {
    fn is_complex(&self) -> bool;
fn to_complex(&mut self);
fn to_real(&mut self); }

Number space (real or complex) information.

Required Methods

For implementations which track meta data at runtime this method may be implemented to transition between different states. For all other implementations they may leave this empty.

See to_complex for more details.

Implementors