macro_rules! cast_signed {
(@signed $val:ident) => { ... };
(@unsigned $val:ident) => { ... };
}Expand description
Given a value and whether it is signed, cast it to the signed version.
macro_rules! cast_signed {
(@signed $val:ident) => { ... };
(@unsigned $val:ident) => { ... };
}Given a value and whether it is signed, cast it to the signed version.