This library provides various checked number operations.
At this moment only checked type conversion is supported.
... := must.Int32ToUint8(200) // OK
... := must.Int32ToInt8(200) // panics
- Add conversion functions that return errors instead of panicking.
- Support other checked operations like add, sub, mul, etc.