pub type RealTimeVecSlice32<'a> = DspVec<&'a [f32], f32, Real, Time>;Expand description
A vector with real numbers in time domain.
Aliased Type§
pub struct RealTimeVecSlice32<'a> {
pub data: &'a [f32],
/* private fields */
}Fields§
§data: &'a [f32]The underlying storage. self.len() should be called to find out how many
elements in data contain valid data.