Skip to main content

lib/
lib.rs

1#![allow(unused_parens)]
2#![allow(dead_code)]
3//re-exports
4
5#[cfg(feature = "math")]
6mod math;
7#[cfg(feature = "data")]
8mod datas;
9#[cfg(feature = "ntr_lang")]
10mod ntr_lang;
11mod tool;
12
13#[cfg(test)]
14mod tests {
15    use std::ops::Neg;
16
17    #[test]
18    fn it_works() {
19        
20    }
21}