runmat-runtime 0.6.0

Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

mod analytics;
mod constructors;
mod conversions;
mod indexing;
mod io;
mod predicates;
mod selectors;
mod timetable;

#[allow(unused_imports)]
pub(crate) use {
    analytics::*, constructors::*, conversions::*, indexing::*, io::*, predicates::*, selectors::*,
    timetable::*,
};