Expand description
Crate providing a procedural macro to make normal operations into overflow checked operations easily
Macrosยง
- checked_
expr - Procedural macro to convert normal integer operations into overflow-checked operations.
The expression will evaluate to
Some(result)
if all operations succed or toNone
if any of the operations fails.