xplus
xplus(x_op1x_op2[x_opt3] ) =>x_result
Description
Returns the integer result of adding one or more operands to the first operand. xplus is an integer-only arithmetic function while plus can handle integers and floating-point numbers. xplus runs slightly faster than plus in integer arithmetic calculation.
Arguments
Value Returned
Examples
xplus(12 13)
=> 25
xplus(-12 -13)
=> -25
Related Topics
Return to top