// ferray-core: Array module — NdArray<T, D> and ownership variants (REQ-1, REQ-3)
//
// NdArray wraps ndarray::ArrayBase internally. ndarray is NEVER part of the
// public API surface.
/// Flags describing the memory properties of an array.
// Re-export the main types at this module level for convenience.
pub use ArcArray;
pub use CowArray;
pub use Array;
pub use ArrayView;
pub use ArrayViewMut;