What is the difference between
checked(a + b)
and
unchecked(a + b)
?
It controls overflow checking for integer operations.