#![cfg_attr(feature = "no_std", no_std)]
#[cfg(feature = "no_std")]
extern crate alloc;
pub mod constants;
pub mod dimension;
pub mod dtype;
pub mod error;
pub mod layout;
pub mod record;
#[cfg(not(feature = "no_std"))]
pub mod array;
#[cfg(not(feature = "no_std"))]
pub mod buffer;
#[cfg(not(feature = "no_std"))]
pub mod creation;
#[cfg(not(feature = "no_std"))]
pub mod dynarray;
#[cfg(not(feature = "no_std"))]
pub mod indexing;
#[cfg(not(feature = "no_std"))]
pub mod manipulation;
#[cfg(not(feature = "no_std"))]
pub mod ops;
#[cfg(not(feature = "no_std"))]
pub mod prelude;
#[cfg(not(feature = "no_std"))]
pub use array::ArrayFlags;
#[cfg(not(feature = "no_std"))]
pub use array::aliases;
#[cfg(not(feature = "no_std"))]
pub use array::arc::ArcArray;
#[cfg(not(feature = "no_std"))]
pub use array::cow::CowArray;
#[cfg(not(feature = "no_std"))]
pub use array::display::{get_print_options, set_print_options};
#[cfg(not(feature = "no_std"))]
pub use array::owned::Array;
#[cfg(not(feature = "no_std"))]
pub use array::view::ArrayView;
#[cfg(not(feature = "no_std"))]
pub use array::view_mut::ArrayViewMut;
pub use dimension::{Axis, Dimension, Ix0, Ix1, Ix2, Ix3, Ix4, Ix5, Ix6, IxDyn};
#[cfg(feature = "const_shapes")]
pub use dimension::static_shape::{
Assert, DefaultNdarrayDim, IsTrue, Shape1, Shape2, Shape3, Shape4, Shape5, Shape6,
StaticBroadcast, StaticMatMul, StaticSize, static_reshape_array,
};
pub use dtype::{DType, Element, SliceInfoElem};
pub use error::{FerrayError, FerrayResult};
pub use layout::MemoryLayout;
#[cfg(not(feature = "no_std"))]
pub use buffer::AsRawBuffer;
#[cfg(not(feature = "no_std"))]
pub use dynarray::DynArray;
pub use record::FieldDescriptor;
pub use ferray_core_macros::{FerrayRecord, promoted_type, s};
pub use record::FerrayRecord;
#[cfg(kani)]
mod verification_kani;