macro_rules! if_signed {
(true $($x:tt)*) => { ... };
(false $($x:tt)*) => { ... };
}Expand description
Output the given tokens if the type is signed, otherwise output nothing.
macro_rules! if_signed {
(true $($x:tt)*) => { ... };
(false $($x:tt)*) => { ... };
}Output the given tokens if the type is signed, otherwise output nothing.