repl.txt (995B)
1 2 {{alias}}( [out,] a, b ) 3 Multiplies two signed 32-bit integers and returns an array of two signed 32- 4 bit integers which represents the signed 64-bit integer product. 5 6 When computing the product of 32-bit integer values in double-precision 7 floating-point format (the default JavaScript numeric data type), computing 8 the double word product is necessary in order to avoid exceeding the maximum 9 safe double-precision floating-point integer value. 10 11 Parameters 12 ---------- 13 out: ArrayLikeObject (optional) 14 The output array. 15 16 a: integer 17 Signed 32-bit integer. 18 19 b: integer 20 Signed 32-bit integer. 21 22 Returns 23 ------- 24 out: ArrayLikeObject 25 Double word product (in big endian order; i.e., the first element 26 corresponds to the most significant bits and the second element to the 27 least significant bits). 28 29 Examples 30 -------- 31 > var v = {{alias}}( 1, 10 ) 32 [ 0, 10 ] 33 34 See Also 35 -------- 36