You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Multiplies two single-precision floating-point numbers `x` and `y`.
450
-
*
451
-
* @param x - first input value
452
-
* @param y - second input value
453
-
* @returns result
454
-
*
455
-
* @example
456
-
* var v = ns.mulf( -1.0, 5.0 );
457
-
* // returns -5.0
458
-
*
459
-
* @example
460
-
* var v = ns.mulf( 2.0, 5.0 );
461
-
* // returns 10.0
462
-
*
463
-
* @example
464
-
* var v = ns.mulf( 0.0, 5.0 );
465
-
* // returns 0.0
466
-
*
467
-
* @example
468
-
* var v = ns.mulf( -0.0, 0.0 );
469
-
* // returns -0.0
470
-
*
471
-
* @example
472
-
* var v = ns.mulf( NaN, NaN );
473
-
* // returns NaN
474
-
*/
475
-
mulf: typeofmulf;
476
-
477
447
/**
478
448
* Performs multiplication of two unsigned 32-bit integers and returns an array of two unsigned 32-bit integers which represents the unsigned 64-bit integer product.
0 commit comments