macro_rules! i24 {
(0) => { ... };
($e: expr) => { ... };
}Expand description
creates an i24 from a constant expression
will give a compile error if the expression overflows an i24
macro_rules! i24 {
(0) => { ... };
($e: expr) => { ... };
}creates an i24 from a constant expression
will give a compile error if the expression overflows an i24