Skip to content

Commit e02f65e

Browse files
committed
remove: remove mskmin from namespace
This commit removes the `mskmin` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `mskmin` To migrate, users should access the same symbol via the `@stdlib/stats/strided` namespace. Ref: #4797 --- 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 47a304a commit e02f65e

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

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

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import meanors = require( '@stdlib/stats/base/meanors' );
3737
import meanpn = require( '@stdlib/stats/base/meanpn' );
3838
import meanpw = require( '@stdlib/stats/base/meanpw' );
3939
import meanwd = require( '@stdlib/stats/base/meanwd' );
40-
import mskmin = require( '@stdlib/stats/base/mskmin' );
4140
import mskrange = require( '@stdlib/stats/base/mskrange' );
4241
import nanmax = require( '@stdlib/stats/base/nanmax' );
4342
import nanmaxBy = require( '@stdlib/stats/base/nanmax-by' );
@@ -541,32 +540,6 @@ interface Namespace {
541540
*/
542541
meanwd: typeof meanwd;
543542

544-
/**
545-
* Computes the minimum value of a strided array according to a mask.
546-
*
547-
* @param N - number of indexed elements
548-
* @param x - input array
549-
* @param strideX - stride length for `x`
550-
* @param mask - mask array
551-
* @param strideMask - stride length for `mask`
552-
* @returns minimum value
553-
*
554-
* @example
555-
* var x = [ 1.0, -2.0, -4.0, 2.0 ];
556-
* var mask = [ 0, 0, 1, 0 ];
557-
*
558-
* var v = ns.mskmin( x.length, x, 1, mask, 1 );
559-
* // returns -2.0
560-
*
561-
* @example
562-
* var x = [ 1.0, -2.0, -4.0, 2.0 ];
563-
* var mask = [ 0, 0, 1, 0 ];
564-
*
565-
* var v = ns.mskmin.ndarray( x.length, x, 1, 0, mask, 1, 0 );
566-
* // returns -2.0
567-
*/
568-
mskmin: typeof mskmin;
569-
570543
/**
571544
* Computes the range of a strided array according to a mask.
572545
*

lib/node_modules/@stdlib/stats/base/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,6 @@ setReadOnly( ns, 'meanpw', require( '@stdlib/stats/base/meanpw' ) );
189189
*/
190190
setReadOnly( ns, 'meanwd', require( '@stdlib/stats/base/meanwd' ) );
191191

192-
/**
193-
* @name mskmin
194-
* @memberof ns
195-
* @readonly
196-
* @type {Function}
197-
* @see {@link module:@stdlib/stats/base/mskmin}
198-
*/
199-
setReadOnly( ns, 'mskmin', require( '@stdlib/stats/base/mskmin' ) );
200-
201192
/**
202193
* @name mskrange
203194
* @memberof ns

0 commit comments

Comments
 (0)