pub type GenDspVec<S, T> = DspVec<S, T, RealOrComplex, TimeOrFreq>;Expand description
A vector with no information about number space or domain at compile time.
Aliased Type§
pub struct GenDspVec<S, T> {
pub data: S,
/* private fields */
}Fields§
§data: SThe underlying storage. self.len() should be called to find out how many
elements in data contain valid data.