1pub mod aliases;
7pub mod arc;
8pub mod cow;
9pub mod display;
10mod index_impl;
11pub mod introspect;
12pub mod iter;
13pub mod methods;
14pub mod owned;
15pub mod reductions;
16#[cfg(feature = "serde")]
17mod serde_impl;
18pub mod sort;
19pub mod view;
20pub mod view_mut;
21
22#[derive(Debug, Clone, Copy, PartialEq, Eq)]
24pub struct ArrayFlags {
25 pub c_contiguous: bool,
27 pub f_contiguous: bool,
29 pub owndata: bool,
31 pub writeable: bool,
33}
34
35pub use self::arc::ArcArray;
37pub use self::cow::CowArray;
38pub use self::owned::Array;
39pub use self::view::ArrayView;
40pub use self::view_mut::ArrayViewMut;