Type Alias basic_dsp_vector::GenDspVecSlice32

source ·
pub type GenDspVecSlice32<'a> = DspVec<&'a [f32], f32, RealOrComplex, TimeOrFreq>;
Expand description

A vector with no information about number space or domain at compile time.

Aliased Type§

struct GenDspVecSlice32<'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.