working on code
[vector-math.git] / src / lib.rs
1 #![no_std]
2
3 pub mod traits;
4
5 #[derive(Clone, Copy, Debug, Default, Hash)]
6 #[repr(transparent)]
7 pub struct F16(pub u16);