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