forked from rust-ndarray/ndarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
16 lines (14 loc) · 644 Bytes
/
mod.rs
File metadata and controls
16 lines (14 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Building blocks for describing array layout.
//!
//! This module contains types and traits used to describe how an array is structured in memory.
//! At present, it includes utilities for compactly encoding layout information
//! and abstractions for representing an array’s dimensionality.
//!
//! Over time, this module will also define traits and types for shapes, strides, and complete
//! array layouts, providing a clearer separation between these concerns and enabling more
//! flexible and expressive layout representations.
mod bitset;
pub mod rank;
pub mod ranked;
#[allow(deprecated)]
pub use bitset::{Layout, LayoutBitset};