Skip to content

Commit ba7f7ab

Browse files
gururaj1512kgryte
authored andcommitted
remove: remove umul from namespace
This commit removes the `umul` symbol from the `@stdlib/math/base/ops` namespace due to a package migration. BREAKING CHANGE: remove `umul` To migrate, users should access the same symbol via the `@stdlib/number/uint32/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 348d584 commit ba7f7ab

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
@@ -32,7 +32,6 @@ import csubf = require( '@stdlib/math/base/ops/csubf' );
3232
import imul = require( '@stdlib/math/base/ops/imul' );
3333
import imuldw = require( '@stdlib/math/base/ops/imuldw' );
3434
import mulf = require( '@stdlib/number/float32/base/mul' );
35-
import umul = require( '@stdlib/math/base/ops/umul' );
3635
import umuldw = require( '@stdlib/math/base/ops/umuldw' );
3736
import addf = require( '@stdlib/number/float32/base/add' );
3837
import divf = require( '@stdlib/number/float32/base/div' );
@@ -475,19 +474,6 @@ interface Namespace {
475474
*/
476475
mulf: typeof mulf;
477476

478-
/**
479-
* Performs C-like multiplication of two unsigned 32-bit integers.
480-
*
481-
* @param a - unsigned 32-bit integer
482-
* @param b - Unsigned 32-bit integer
483-
* @returns product
484-
*
485-
* @example
486-
* var v = ns.umul( 10>>>0, 4>>>0 );
487-
* // returns 40
488-
*/
489-
umul: typeof umul;
490-
491477
/**
492478
* 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.
493479
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,6 @@ setReadOnly( ns, 'imul', require( '@stdlib/math/base/ops/imul' ) );
135135
*/
136136
setReadOnly( ns, 'imuldw', require( '@stdlib/math/base/ops/imuldw' ) );
137137

138-
/**
139-
* @name umul
140-
* @memberof ns
141-
* @readonly
142-
* @type {Function}
143-
* @see {@link module:@stdlib/math/base/ops/umul}
144-
*/
145-
setReadOnly( ns, 'umul', require( '@stdlib/math/base/ops/umul' ) );
146-
147138
/**
148139
* @name umuldw
149140
* @memberof ns

0 commit comments

Comments
 (0)