rill-core-dsp 0.5.0

Core DSP abstractions and algorithms for Rill
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Vector operations for DSP
//!
//! This module re-exports the vector infrastructure from `rill-core`.
//! See [rill_core::vector] for documentation.

/// Prelude for convenient imports
pub mod prelude {
    pub use rill_core::vector::prelude::*;
}

pub use rill_core::vector::*;