Currently multiplication, addition and subtraction will panic on overflow, division and modulus will panic on divide by zero. I believe this is only true for integer types but have not tested. Unchecked operations are currently unstable so we'll need to used the checked operations and return an error on fail.
Currently multiplication, addition and subtraction will panic on overflow, division and modulus will panic on divide by zero. I believe this is only true for integer types but have not tested. Unchecked operations are currently unstable so we'll need to used the checked operations and return an error on fail.