sklears_utils/array_utils/
mod.rs

1//! Array utilities module
2//!
3//! This module provides comprehensive array manipulation utilities split into
4//! logical submodules for better organization and maintainability.
5
6pub mod core;
7pub mod indexing;
8pub mod inplace;
9pub mod memory;
10pub mod shape_ops;
11pub mod simd_ops;
12pub mod sparse;
13pub mod stats;
14
15// Re-export commonly used functions
16pub use core::*;
17pub use indexing::*;
18pub use inplace::*;
19pub use memory::*;
20pub use shape_ops::*;
21pub use simd_ops::*;
22pub use sparse::*;
23pub use stats::*;