2024-08-26 17:07:29 -07:00
|
|
|
pub mod fixed;
|
2024-08-23 14:17:48 -07:00
|
|
|
pub mod types;
|
2024-08-26 17:28:33 -07:00
|
|
|
|
2024-08-27 16:50:24 -07:00
|
|
|
pub mod typenum{
|
|
|
|
pub use typenum::Unsigned;
|
|
|
|
}
|
|
|
|
|
2024-08-27 12:07:19 -07:00
|
|
|
#[cfg(feature="fixed_wide_traits")]
|
|
|
|
mod fixed_wide_traits;
|
|
|
|
#[cfg(feature="fixed_wide_traits")]
|
|
|
|
pub use ::fixed_wide_traits::wide;
|
2024-08-28 12:17:00 -07:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|