Skip to content

Commit fedfb94

Browse files
aayush0325kgryte
authored andcommitted
remove: remove stats/base/dnanmin from namespace
This commit removes the `dnanmin` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `stats/base/dnanmin` To migrate, users should access the same symbol via the `@stdlib/stats/strided/dnanmin` 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 9f6d0db commit fedfb94

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
@@ -38,7 +38,6 @@ import dmskrange = require( '@stdlib/stats/base/dmskrange' );
3838
import dnanmeanpn = require( '@stdlib/stats/base/dnanmeanpn' );
3939
import dnanmeanpw = require( '@stdlib/stats/base/dnanmeanpw' );
4040
import dnanmeanwd = require( '@stdlib/stats/base/dnanmeanwd' );
41-
import dnanmin = require( '@stdlib/stats/base/dnanmin' );
4241
import dnanminabs = require( '@stdlib/stats/base/dnanminabs' );
4342
import dnanmskmax = require( '@stdlib/stats/base/dnanmskmax' );
4443
import dnanmskmin = require( '@stdlib/stats/base/dnanmskmin' );
@@ -722,32 +721,6 @@ interface Namespace {
722721
*/
723722
dnanmeanwd: typeof dnanmeanwd;
724723

725-
/**
726-
* Computes the minimum value of a double-precision floating-point strided array, ignoring `NaN` values.
727-
*
728-
* @param N - number of indexed elements
729-
* @param x - input array
730-
* @param strideX - stride length
731-
* @returns minimum value
732-
*
733-
* @example
734-
* var Float64Array = require( '@stdlib/array/float64' );
735-
*
736-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
737-
*
738-
* var v = ns.dnanmin( x.length, x, 1 );
739-
* // returns -2.0
740-
*
741-
* @example
742-
* var Float64Array = require( '@stdlib/array/float64' );
743-
*
744-
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
745-
*
746-
* var v = ns.dnanmin.ndarray( x.length, x, 1, 0 );
747-
* // returns -2.0
748-
*/
749-
dnanmin: typeof dnanmin;
750-
751724
/**
752725
* Computes the minimum absolute value of a double-precision floating-point strided array, ignoring `NaN` values.
753726
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -198,15 +198,6 @@ setReadOnly( ns, 'dnanmeanpw', require( '@stdlib/stats/base/dnanmeanpw' ) );
198198
*/
199199
setReadOnly( ns, 'dnanmeanwd', require( '@stdlib/stats/base/dnanmeanwd' ) );
200200

201-
/**
202-
* @name dnanmin
203-
* @memberof ns
204-
* @readonly
205-
* @type {Function}
206-
* @see {@link module:@stdlib/stats/base/dnanmin}
207-
*/
208-
setReadOnly( ns, 'dnanmin', require( '@stdlib/stats/base/dnanmin' ) );
209-
210201
/**
211202
* @name dnanminabs
212203
* @memberof ns

0 commit comments

Comments
 (0)