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); }
Expand description
Number space (real or complex) information.
Required methods
fn is_complex(&self) -> bool[src]fn to_complex(&mut self)[src]
fn to_complex(&mut self)[src]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.