Bitwise overflow action.
Action to take when a bitwise add/subtract operation results in overflow/underflow.
Fail operation with error. Default.
If add/subtract overflows/underflows, set to max/min value. Example: MAXINT + 1 = MAXINT.
If add/subtract overflows/underflows, wrap the value. Example: MAXINT + 1 = -1.
Bitwise overflow action.
Remarks
Action to take when a bitwise add/subtract operation results in overflow/underflow.