2017-02-16 05:04:34 +08:00
|
|
|
//! [Reexported at the root of this crate.] Data structures for vector and matrix computations.
|
2017-02-13 01:17:09 +08:00
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
pub mod allocator;
|
2017-08-03 01:37:44 +08:00
|
|
|
mod blas;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub mod constraint;
|
|
|
|
pub mod coordinates;
|
2016-12-05 05:44:42 +08:00
|
|
|
pub mod default_allocator;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub mod dimension;
|
|
|
|
pub mod iter;
|
|
|
|
mod ops;
|
|
|
|
pub mod storage;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2018-05-19 23:15:15 +08:00
|
|
|
mod alias;
|
|
|
|
mod alias_slice;
|
|
|
|
mod cg;
|
|
|
|
mod componentwise;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod construction;
|
2018-02-02 19:26:04 +08:00
|
|
|
mod construction_slice;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod conversion;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod edition;
|
|
|
|
mod matrix;
|
|
|
|
mod matrix_alga;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod matrix_array;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod matrix_slice;
|
|
|
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
2016-12-05 05:44:42 +08:00
|
|
|
mod matrix_vec;
|
2018-05-19 23:15:15 +08:00
|
|
|
mod properties;
|
|
|
|
mod scalar;
|
2016-12-05 05:44:42 +08:00
|
|
|
mod unit;
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod helper;
|
|
|
|
|
|
|
|
pub use self::matrix::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::scalar::*;
|
2016-12-05 05:44:42 +08:00
|
|
|
pub use self::unit::*;
|
|
|
|
|
|
|
|
pub use self::default_allocator::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::dimension::*;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
pub use self::alias::*;
|
2018-02-02 19:26:00 +08:00
|
|
|
pub use self::alias_slice::*;
|
2016-12-05 05:44:42 +08:00
|
|
|
pub use self::matrix_array::*;
|
2018-05-19 23:15:15 +08:00
|
|
|
pub use self::matrix_slice::*;
|
|
|
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
2016-12-05 05:44:42 +08:00
|
|
|
pub use self::matrix_vec::*;
|