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
//! Array creation functions
//!
//! This module provides various functions to create arrays, organized into submodules:
//!
//! - [`core`] - Core creation from data sources (fromfunction, frombuffer, fromiter, frommemmap, fromstring)
//! - [`grids`] - Grid/mesh creation (meshgrid, mgrid, ogrid)
//! - [`ranges`] - Range-based creation on log/geometric scales (logspace, geomspace)
//! - [`special`] - Special array creation (tri, diagflat, vander)
//! - [`contiguous`] - Memory layout functions (asanyarray, ascontiguousarray, asfortranarray, etc.)
//! - [`mod@concat`] - Concatenation helpers (r_concatenate, c_concatenate, ix_)
//! - [`mod@slice`] - Slice specification types (SliceSpec, s_, NEWAXIS)
// Re-export all public items from submodules
// Core creation functions
pub use ;
// Grid creation functions
pub use ;
// Range-based creation functions
pub use ;
// Special array creation functions
pub use ;
// Memory layout functions
pub use ;
// Concatenation helpers
pub use ;
// Slice specification
pub use ;