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