runmat_runtime/builtins/
mod.rs

1//! New builtin set. Builtins are organised by category and re-exported from this module.
2#[macro_use]
3pub mod common;
4pub mod acceleration;
5pub mod array;
6pub mod cells;
7pub mod constants;
8pub mod containers;
9pub mod diagnostics;
10pub mod image;
11pub mod introspection;
12pub mod io;
13pub mod logical;
14pub mod math;
15pub mod stats;
16pub mod strings;
17pub mod structs;
18pub mod timing;
19
20// Temporary: expose legacy modules while migration is in progress.
21pub mod legacy {
22    pub use crate::arrays;
23    #[cfg(feature = "blas-lapack")]
24    pub use crate::blas;
25    pub use crate::comparison;
26    pub use crate::concatenation;
27    pub use crate::elementwise;
28    pub use crate::indexing;
29    #[cfg(feature = "blas-lapack")]
30    pub use crate::lapack;
31    pub use crate::matrix;
32}