1 2 3 4 5 6 7 8 9 10 11
#![allow(unused_imports)] #[cfg(feature = "std")] mod matrix; #[cfg(feature = "std")] mod matrix_list; #[cfg(feature = "std")] pub use matrix::Matrix; #[cfg(feature = "std")] pub use matrix_list::MatrixList;