Skip to content

Commit b2228a8

Browse files
gururaj1512kgryte
authored andcommitted
remove: remove imuldw from namespace
This commit removes the `imuldw` symbol from the `@stdlib/math/base/ops` namespace due to a package migration. BREAKING CHANGE: remove `imuldw` To migrate, users should access the same symbol via the `@stdlib/number/int32/base` namespace. --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent fd83184 commit b2228a8

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import cneg = require( '@stdlib/math/base/ops/cneg' );
2929
import cnegf = require( '@stdlib/math/base/ops/cnegf' );
3030
import csub = require( '@stdlib/math/base/ops/csub' );
3131
import csubf = require( '@stdlib/math/base/ops/csubf' );
32-
import imuldw = require( '@stdlib/math/base/ops/imuldw' );
3332
import umuldw = require( '@stdlib/math/base/ops/umuldw' );
3433
import divf = require( '@stdlib/number/float32/base/div' );
3534
import div = require( '@stdlib/number/float64/base/div' );
@@ -412,23 +411,6 @@ interface Namespace {
412411
*/
413412
csubf: typeof csubf;
414413

415-
/**
416-
* Performs multiplication of two signed 32-bit integers and returns an array of two signed 32-bit integers which represents the signed 64-bit integer product.
417-
*
418-
* ## Notes
419-
*
420-
* - When computing the product of 32-bit integer values in double-precision floating-point format (the default JavaScript numeric data type), computing the double word product is necessary in order to avoid exceeding the maximum safe double-precision floating-point integer value.
421-
*
422-
* @param a - integer
423-
* @param b - integer
424-
* @returns output array
425-
*
426-
* @example
427-
* var v = ns.imuldw( 0xAAAAAAAA, 0x55555555 );
428-
* // returns [ -477218589, 1908874354 ]
429-
*/
430-
imuldw: typeof imuldw;
431-
432414
/**
433415
* 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.
434416
*

lib/node_modules/@stdlib/math/base/ops/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,6 @@ setReadOnly( ns, 'csub', require( '@stdlib/math/base/ops/csub' ) );
117117
*/
118118
setReadOnly( ns, 'csubf', require( '@stdlib/math/base/ops/csubf' ) );
119119

120-
/**
121-
* @name imuldw
122-
* @memberof ns
123-
* @readonly
124-
* @type {Function}
125-
* @see {@link module:@stdlib/math/base/ops/imuldw}
126-
*/
127-
setReadOnly( ns, 'imuldw', require( '@stdlib/math/base/ops/imuldw' ) );
128-
129120
/**
130121
* @name umuldw
131122
* @memberof ns

0 commit comments

Comments
 (0)