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