macro_rules! shorter_type {
(i8 ) => { ... };
(i16 ) => { ... };
(i24 ) => { ... };
(i32 ) => { ... };
(i64 ) => { ... };
(i128) => { ... };
(u8 ) => { ... };
(u16 ) => { ... };
(u24 ) => { ... };
(u32 ) => { ... };
(u64 ) => { ... };
(u128) => { ... };
(f32 ) => { ... };
(f64 ) => { ... };
}Expand description
Get the shorter type of the current type.