calculate-macro 0.1.0

Expand the bit number of the parameters in the calculation formula to obtain the result with the expected bit number.
Documentation
1
2
3
4
5
6
7
Expand the bit number of the parameters in the calculation formula to obtain the result with the expected bit number.
```
let a = u8::MAX;
let b = u16::MAX;
let result = calc!(a + b; u32);
assert_eq!(result, 65790u32);
```