//! This module provide operations for working on slices. Each operation is done as generically as possible to be interopable.
//! When relevent, slices are assumed to extend indefinitely and be filled with zeros.
//! For example, the inner product will not panic when the two input slices have different lengths.
//! Instead, it will simply truncate the longer one, which is equivalent to multiply each extra element by zero before summing.
pub const MIN_RAYON_LEN: usize = 1 << 8;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;