1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![doc = include_str!("../README.md")]
#![allow(non_camel_case_types)]
#![allow(refining_impl_trait_reachable)]
#![allow(non_upper_case_globals)]
#![cfg_attr(not(test), no_std)]

pub mod blas1;
pub mod blas2;
pub mod blas3;
pub mod ffi;
pub mod prelude;
pub mod util;

pub mod document_dev {
    #![doc = include_str!("../docs-markdown/dev.md")]
}

pub mod document_func {
    #![doc = include_str!("../docs-markdown/func.md")]
    #![allow(unused_imports)]
    use crate::prelude::*;
    use crate::prelude::generic::*;
}

pub mod demo_efficiency {
    #![doc = include_str!("../docs-markdown/demo_efficiency.md")]
}