Skip to content

Commit b70a6d6

Browse files
committed
remove: remove imul from namespace
This commit removes the `imul` symbol from the `@stdlib/math/base/ops` namespace due to a package migration. BREAKING CHANGE: remove `imul` 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 c528ca7 commit b70a6d6

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

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

Lines changed: 0 additions & 14 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 imul = require( '@stdlib/math/base/ops/imul' );
3332
import imuldw = require( '@stdlib/math/base/ops/imuldw' );
3433
import umuldw = require( '@stdlib/math/base/ops/umuldw' );
3534
import addf = require( '@stdlib/number/float32/base/add' );
@@ -414,19 +413,6 @@ interface Namespace {
414413
*/
415414
csubf: typeof csubf;
416415

417-
/**
418-
* Performs C-like multiplication of two signed 32-bit integers.
419-
*
420-
* @param a - signed 32-bit integer
421-
* @param b - signed 32-bit integer
422-
* @returns product
423-
*
424-
* @example
425-
* var v = ns.imul( -10|0, 4|0 );
426-
* // returns -40
427-
*/
428-
imul: typeof imul;
429-
430416
/**
431417
* 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.
432418
*

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 imul
122-
* @memberof ns
123-
* @readonly
124-
* @type {Function}
125-
* @see {@link module:@stdlib/math/base/ops/imul}
126-
*/
127-
setReadOnly( ns, 'imul', require( '@stdlib/math/base/ops/imul' ) );
128-
129120
/**
130121
* @name imuldw
131122
* @memberof ns

0 commit comments

Comments
 (0)