1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
//! # Integer-Array
//! No-STD i32 fixed-size array for Rust.
//!
//! The library lets the user declare arrays with traits that simplify the writhing of DSP-code.
//!
//! ## Example
//! ```rust
//! use integer_array as ia;
//! use integer_array::trait_definitions::*;
//!
//! // Define an array type of size 4, and implemnets a buch of traits to it.
//! ia::declare_array_real!( Arr4, 4);
//!
//! // Create the actual array.
//! let mut x = Arr4::new(66);
//! assert_eq!(x.data, [66, 66, 66, 66]);
//!
//! // Do some math with the arrays.
//! let y = Arr4::new(2);
//! x = x/y;
//! assert_eq!(x.front(), 33);
//! ```
//!
//! ## Backgorund
//! This is an experimental library for no-std DSP.
//! The library only supports fixed-sized arrays of i32.
//!
//! 32-bit arrays can be handled by most DSP-capable embedded devices and provides 6.02×32>192 dB of dynamic range, which is sufficient for most DSP use.
//! The rationale is that if 64-bit processing is available, then so is an OS, and the Rust standard library.
//!
//! ## How to use
//! See the macro documentation for the implemented traits.
#![crate_name = "integer_array"]
#![no_std]
/*
// Use std for test.
#[cfg(any(feature = "std", test))]
extern crate std;
*/
// Pull in core as std.
//#[cfg(all(not(feature = "std"), not(test)))]
extern crate core as std;
// Modules (files in the top hierarchy)
pub mod utility_functions;
pub mod constants;
pub mod trait_definitions;
pub mod real;
pub mod complex;