Skip to content

Commit 7c73dad

Browse files
committed
Auto-generated commit
1 parent 8239a13 commit 7c73dad

2 files changed

Lines changed: 0 additions & 42 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
### Features
1212

13-
- [`b117c97`](https://github.com/stdlib-js/stdlib/commit/b117c97db1b322d6d347c1bb0c7f18edf6963dfa) - update `blas/ext/base/ndarray` TypeScript declarations [(#11321)](https://github.com/stdlib-js/stdlib/pull/11321)
1413
- [`5b0f76d`](https://github.com/stdlib-js/stdlib/commit/5b0f76d17b0ad323617cb7afbd89a3e81f7a2985) - add `goneTo` to namespace
1514
- [`cf9c1fd`](https://github.com/stdlib-js/stdlib/commit/cf9c1fd10bbb26b8ffe798bef302240f93389953) - add `blas/ext/base/ndarray/gone-to` [(#11308)](https://github.com/stdlib-js/stdlib/pull/11308)
1615
- [`31214ce`](https://github.com/stdlib-js/stdlib/commit/31214cef89dc16436602f8290be8717d30381fd5) - add `soneTo` to namespace
@@ -76,7 +75,6 @@
7675

7776
<details>
7877

79-
- [`b117c97`](https://github.com/stdlib-js/stdlib/commit/b117c97db1b322d6d347c1bb0c7f18edf6963dfa) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#11321)](https://github.com/stdlib-js/stdlib/pull/11321) _(by stdlib-bot)_
8078
- [`bb0baff`](https://github.com/stdlib-js/stdlib/commit/bb0baff5acc1fbfa5f34b31045dde2ebd123c140) - **docs:** update namespace table of contents [(#11322)](https://github.com/stdlib-js/stdlib/pull/11322) _(by stdlib-bot)_
8179
- [`5b0f76d`](https://github.com/stdlib-js/stdlib/commit/5b0f76d17b0ad323617cb7afbd89a3e81f7a2985) - **feat:** add `goneTo` to namespace _(by Athan Reines)_
8280
- [`cf9c1fd`](https://github.com/stdlib-js/stdlib/commit/cf9c1fd10bbb26b8ffe798bef302240f93389953) - **feat:** add `blas/ext/base/ndarray/gone-to` [(#11308)](https://github.com/stdlib-js/stdlib/pull/11308) _(by Muhammad Haris)_

docs/types/index.d.ts

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import dnansumkbn = require( '@stdlib/blas-ext-base-ndarray-dnansumkbn' );
3737
import dnansumkbn2 = require( '@stdlib/blas-ext-base-ndarray-dnansumkbn2' );
3838
import dnansumors = require( '@stdlib/blas-ext-base-ndarray-dnansumors' );
3939
import dnansumpw = require( '@stdlib/blas-ext-base-ndarray-dnansumpw' );
40-
import doneTo = require( '@stdlib/blas-ext-base-ndarray-done-to' );
4140
import dsorthp = require( '@stdlib/blas-ext-base-ndarray-dsorthp' );
4241
import dsortins = require( '@stdlib/blas-ext-base-ndarray-dsortins' );
4342
import dsortsh = require( '@stdlib/blas-ext-base-ndarray-dsortsh' );
@@ -86,7 +85,6 @@ import snansumkbn = require( '@stdlib/blas-ext-base-ndarray-snansumkbn' );
8685
import snansumkbn2 = require( '@stdlib/blas-ext-base-ndarray-snansumkbn2' );
8786
import snansumors = require( '@stdlib/blas-ext-base-ndarray-snansumors' );
8887
import snansumpw = require( '@stdlib/blas-ext-base-ndarray-snansumpw' );
89-
import soneTo = require( '@stdlib/blas-ext-base-ndarray-sone-to' );
9088
import ssorthp = require( '@stdlib/blas-ext-base-ndarray-ssorthp' );
9189
import ssum = require( '@stdlib/blas-ext-base-ndarray-ssum' );
9290
import ssumkbn = require( '@stdlib/blas-ext-base-ndarray-ssumkbn' );
@@ -502,25 +500,6 @@ interface Namespace {
502500
*/
503501
dnansumpw: typeof dnansumpw;
504502

505-
/**
506-
* Fills a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.
507-
*
508-
* @param arrays - array-like object containing a one-dimensional input ndarray
509-
* @returns input ndarray
510-
*
511-
* @example
512-
* var Float64Array = require( '@stdlib/array-float64' );
513-
* var ndarray = require( '@stdlib/ndarray-base-ctor' );
514-
*
515-
* var xbuf = new Float64Array( [ 0.0, 0.0, 0.0, 0.0 ] );
516-
* var x = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
517-
* // returns <ndarray>[ 0.0, 0.0, 0.0, 0.0 ]
518-
*
519-
* var out = ns.doneTo( [ x ] );
520-
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
521-
*/
522-
doneTo: typeof doneTo;
523-
524503
/**
525504
* Sorts a one-dimensional double-precision floating-point ndarray using heapsort.
526505
*
@@ -1669,25 +1648,6 @@ interface Namespace {
16691648
*/
16701649
snansumpw: typeof snansumpw;
16711650

1672-
/**
1673-
* Fills a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.
1674-
*
1675-
* @param arrays - array-like object containing a one-dimensional input ndarray
1676-
* @returns input ndarray
1677-
*
1678-
* @example
1679-
* var Float32Array = require( '@stdlib/array-float32' );
1680-
* var ndarray = require( '@stdlib/ndarray-base-ctor' );
1681-
*
1682-
* var xbuf = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );
1683-
* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
1684-
* // returns <ndarray>[ 0.0, 0.0, 0.0, 0.0 ]
1685-
*
1686-
* var out = ns.soneTo( [ x ] );
1687-
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
1688-
*/
1689-
soneTo: typeof soneTo;
1690-
16911651
/**
16921652
* Sorts a one-dimensional single-precision floating-point ndarray using heapsort.
16931653
*

0 commit comments

Comments
 (0)