Skip to main content

rill_core_dsp/vector/
mod.rs

1//! # Vector operations for DSP
2//!
3//! This module re-exports the vector infrastructure from `rill-core`.
4//! See [rill_core::vector] for documentation.
5
6/// Prelude for convenient imports
7pub mod prelude {
8    pub use rill_core::vector::prelude::*;
9}
10
11pub use rill_core::vector::*;