deranged

Macro if_unsigned

Source
macro_rules! if_unsigned {
    (true $($x:tt)*) => { ... };
    (false $($x:tt)*) => { ... };
}
Expand description

Output the given tokens if the type is unsigned, otherwise output nothing.