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