rename fixed_wide::wide to fixed_wide::fixed

This commit is contained in:
Quaternions 2024-08-26 17:07:29 -07:00
parent dda8ebefc4
commit ac5ef8f9be
3 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
pub mod wide;
pub mod fixed;
pub mod types;

View File

@ -1,4 +1,4 @@
pub type I32F32=crate::wide::Fixed<1,typenum::consts::U32>;
pub type I64F64=crate::wide::Fixed<2,typenum::consts::U64>;
pub type I128F128=crate::wide::Fixed<4,typenum::consts::U128>;
pub type I256F256=crate::wide::Fixed<8,typenum::consts::U256>;
pub type I32F32=crate::fixed::Fixed<1,typenum::consts::U32>;
pub type I64F64=crate::fixed::Fixed<2,typenum::consts::U64>;
pub type I128F128=crate::fixed::Fixed<4,typenum::consts::U128>;
pub type I256F256=crate::fixed::Fixed<8,typenum::consts::U256>;