deranged

Macro if_signed

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

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