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
17
use super::*;

mod cells;
mod conversion;
mod options;
mod parquet;
mod reader;
mod text;
mod writer;

pub(super) use cells::*;
pub(super) use conversion::*;
pub(super) use options::*;
pub(super) use parquet::*;
pub(super) use reader::*;
pub(super) use text::*;
pub(super) use writer::*;