Skip to content

Commit b2edad7

Browse files
committed
remove: remove stats/base/dcumin from namespace
This commit removes the `dcumin` symbol from the `@stdlib/stats/base` namespace due to a package migration. BREAKING CHANGE: remove `stats/base/dcumin` To migrate, users should access the same symbol via the `@stdlib/stats/strided/dcumin` 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 27f4193 commit b2edad7

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed

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

-31
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import cumax = require( '@stdlib/stats/base/cumax' );
2424
import cumaxabs = require( '@stdlib/stats/base/cumaxabs' );
2525
import cumin = require( '@stdlib/stats/base/cumin' );
2626
import cuminabs = require( '@stdlib/stats/base/cuminabs' );
27-
import dcumin = require( '@stdlib/stats/base/dcumin' );
2827
import dists = require( '@stdlib/stats/base/dists' );
2928
import dmean = require( '@stdlib/stats/base/dmean' );
3029
import dmeanpn = require( '@stdlib/stats/base/dmeanpn' );
@@ -256,36 +255,6 @@ interface Namespace {
256255
*/
257256
cuminabs: typeof cuminabs;
258257

259-
/**
260-
* Computes the cumulative minimum of double-precision floating-point strided array elements.
261-
*
262-
* @param N - number of indexed elements
263-
* @param x - input array
264-
* @param strideX - `x` stride length
265-
* @param y - output array
266-
* @param strideY - `y` stride length
267-
* @returns output array
268-
*
269-
* @example
270-
* var Float64Array = require( '@stdlib/array/float64' );
271-
*
272-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
273-
* var y = new Float64Array( x.length );
274-
*
275-
* ns.dcumin( x.length, x, 1, y, 1 );
276-
* // y => <Float64Array>[ 1.0, -2.0, -2.0 ]
277-
*
278-
* @example
279-
* var Float64Array = require( '@stdlib/array/float64' );
280-
*
281-
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
282-
* var y = new Float64Array( x.length );
283-
*
284-
* ns.dcumin.ndarray( x.length, x, 1, 0, y, 1, 0 );
285-
* // y => <Float64Array>[ 1.0, -2.0, -2.0 ]
286-
*/
287-
dcumin: typeof dcumin;
288-
289258
/**
290259
* Base (i.e., lower-level) probability distributions.
291260
*/

Diff for: lib/node_modules/@stdlib/stats/base/lib/index.js

-9
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,6 @@ setReadOnly( ns, 'cumin', require( '@stdlib/stats/base/cumin' ) );
7272
*/
7373
setReadOnly( ns, 'cuminabs', require( '@stdlib/stats/base/cuminabs' ) );
7474

75-
/**
76-
* @name dcumin
77-
* @memberof ns
78-
* @readonly
79-
* @type {Function}
80-
* @see {@link module:@stdlib/stats/base/dcumin}
81-
*/
82-
setReadOnly( ns, 'dcumin', require( '@stdlib/stats/base/dcumin' ) );
83-
8475
/**
8576
* @name dists
8677
* @memberof ns

0 commit comments

Comments
 (0)