refactor to easily allow algorithms generic over f16/32/64
[vector-math.git] / src / lib.rs
1 #![no_std]
2 #![deny(unconditional_recursion)]
3
4 #[cfg(any(feature = "std", test))]
5 extern crate std;
6
7 pub mod algorithms;
8 pub mod f16;
9 #[cfg(feature = "ir")]
10 pub mod ir;
11 pub mod prim;
12 pub mod scalar;
13 #[cfg(feature = "stdsimd")]
14 pub mod stdsimd;
15 pub mod traits;