macro_rules! unsigned_type {
(i8 ) => { ... };
(i16 ) => { ... };
(i24 ) => { ... };
(i32 ) => { ... };
(i64 ) => { ... };
(i128) => { ... };
(u8 ) => { ... };
(u16 ) => { ... };
(u24 ) => { ... };
(u32 ) => { ... };
(u64 ) => { ... };
(u128) => { ... };
(f32 ) => { ... };
(f64 ) => { ... };
}Expand description
Get the unsigned type of a specific type, no effect to f32 and f64