nalgebra/src/base/mod.rs

68 lines
1.3 KiB
Rust
Raw Normal View History

//! [Reexported at the root of this crate.] Data structures for vector and matrix computations.
2017-02-13 01:17:09 +08:00
pub mod allocator;
mod blas;
pub mod constraint;
pub mod coordinates;
pub mod default_allocator;
pub mod dimension;
pub mod iter;
mod ops;
pub mod storage;
mod alias;
mod alias_slice;
2022-11-12 00:36:50 +08:00
mod alias_view;
2020-03-21 19:16:46 +08:00
mod array_storage;
mod cg;
mod componentwise;
2020-11-28 05:00:48 +08:00
#[macro_use]
mod construction;
mod construction_view;
mod conversion;
mod edition;
2018-12-03 04:00:08 +08:00
pub mod indexing;
mod matrix;
2020-03-21 19:16:46 +08:00
mod matrix_simba;
mod matrix_view;
2020-03-21 19:16:46 +08:00
mod norm;
mod properties;
mod scalar;
2020-03-21 19:16:46 +08:00
mod statistics;
2018-10-22 13:00:10 +08:00
mod swizzle;
mod unit;
2020-03-21 19:16:46 +08:00
#[cfg(any(feature = "std", feature = "alloc"))]
mod vec_storage;
mod blas_uninit;
#[doc(hidden)]
pub mod helper;
2020-11-15 23:57:49 +08:00
mod interpolation;
mod min_max;
2021-08-03 23:26:56 +08:00
/// Mechanisms for working with values that may not be initialized.
pub mod uninit;
#[cfg(feature = "par-iter")]
2022-10-19 15:51:46 +08:00
pub mod par_iter;
#[cfg(feature = "rkyv-serialize-no-std")]
mod rkyv_wrappers;
pub use self::matrix::*;
2020-03-21 19:16:46 +08:00
pub use self::norm::*;
pub use self::scalar::*;
pub use self::unit::*;
pub use self::default_allocator::*;
pub use self::dimension::*;
pub use self::alias::*;
2018-02-02 19:26:00 +08:00
pub use self::alias_slice::*;
2022-11-12 00:36:50 +08:00
pub use self::alias_view::*;
pub use self::array_storage::*;
pub use self::matrix_view::*;
pub use self::storage::*;
#[cfg(any(feature = "std", feature = "alloc"))]
pub use self::vec_storage::*;