saturating_add()

The saturating_add function adds two numbers, saturating at -2147483648 and 2147483647 instead of overflowing.

For more information about saturating math functions, see the saturating math docs.

Required arguments

NameTypeDescription
xINTAn integer to add to y
yINTAn integer to add to x

Returns

ColumnTypeDescription
saturating_addINTThe result of x+y, saturating at the numeric bounds instead of overflowing. The numeric bounds are the upper and lower bounds of the 32-bit signed integers.