Skip to content

Commit a96235e

Browse files
committed
Auto-generated commit
1 parent c3d7a91 commit a96235e

File tree

3 files changed

+0
-34
lines changed

3 files changed

+0
-34
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686

8787
##### Features
8888

89-
- [`33b46cb`](https://github.com/stdlib-js/stdlib/commit/33b46cbab14e25a72a7464d6d923f09a56ee0d44) - update namespace TypeScript declarations [(#4426)](https://github.com/stdlib-js/stdlib/pull/4426)
9089
- [`1ddeba9`](https://github.com/stdlib-js/stdlib/commit/1ddeba98295bb53fb8098d1016f0de4b7f544e96) - add `scalar2ndarrayLike` to namespace
9190
- [`58e795d`](https://github.com/stdlib-js/stdlib/commit/58e795db467b7bd1d3dc6c5847f91a97fed2ccff) - update namespace TypeScript declarations [(#3937)](https://github.com/stdlib-js/stdlib/pull/3937)
9291
- [`14427c7`](https://github.com/stdlib-js/stdlib/commit/14427c79bc62f82b16cbadc9d34749901e48d105) - add `fill`, `map`, and `toReversed` to namespace
@@ -530,8 +529,6 @@ A total of 3 people contributed to this release. Thank you to the following cont
530529

531530
<details>
532531

533-
- [`8a15baa`](https://github.com/stdlib-js/stdlib/commit/8a15baa639e8c4f45479821cf7331715e0546e86) - **docs:** update related packages sections [(#4425)](https://github.com/stdlib-js/stdlib/pull/4425) _(by stdlib-bot)_
534-
- [`33b46cb`](https://github.com/stdlib-js/stdlib/commit/33b46cbab14e25a72a7464d6d923f09a56ee0d44) - **feat:** update namespace TypeScript declarations [(#4426)](https://github.com/stdlib-js/stdlib/pull/4426) _(by stdlib-bot, Philipp Burckhardt)_
535532
- [`edae311`](https://github.com/stdlib-js/stdlib/commit/edae3110b4b7cc1d675d44e211ffffcff77d6153) - **docs:** update namespace table of contents [(#4428)](https://github.com/stdlib-js/stdlib/pull/4428) _(by stdlib-bot, Philipp Burckhardt)_
536533
- [`e4a53d5`](https://github.com/stdlib-js/stdlib/commit/e4a53d5816f5918f7c7fc5135dce21d676835eca) - **docs:** update related packages sections [(#4399)](https://github.com/stdlib-js/stdlib/pull/4399) _(by stdlib-bot)_
537534
- [`259b682`](https://github.com/stdlib-js/stdlib/commit/259b682b2fb67d03e2987ca02b57d0cbc631ae8e) - **feat:** add support for specifying an array index cache and add support for linear indexing _(by Athan Reines)_

base/docs/types/index.d.ts

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ import fliplr = require( './../../../base/fliplr' );
5757
import flipud = require( './../../../base/flipud' );
5858
import forEach = require( './../../../base/for-each' );
5959
import scalar2ndarray = require( './../../../base/from-scalar' );
60-
import scalar2ndarrayLike = require( './../../../base/from-scalar-like' );
6160
import ind = require( './../../../base/ind' );
6261
import ind2sub = require( './../../../base/ind2sub' );
6362
import iterationOrder = require( './../../../base/iteration-order' );
@@ -1144,33 +1143,6 @@ interface Namespace {
11441143
*/
11451144
scalar2ndarray: typeof scalar2ndarray;
11461145

1147-
/**
1148-
* Returns a zero-dimensional ndarray containing a provided scalar value and having the same data type as a provided input ndarray.
1149-
*
1150-
* @param x - input array
1151-
* @param value - scalar value
1152-
* @returns zero-dimensional ndarray
1153-
*
1154-
* @example
1155-
* var zeros = require( './../../../base/zeros' );
1156-
*
1157-
* var x = zeros( 'float64', [ 2, 2 ], 'row-major' );
1158-
* // returns <ndarray>
1159-
*
1160-
* var y = ns.scalar2ndarrayLike( x, 1.0 );
1161-
* // returns <ndarray>
1162-
*
1163-
* var sh = y.shape;
1164-
* // returns []
1165-
*
1166-
* var dt = y.dtype;
1167-
* // returns 'generic'
1168-
*
1169-
* var v = y.get();
1170-
* // returns 1.0
1171-
*/
1172-
scalar2ndarrayLike: typeof scalar2ndarrayLike;
1173-
11741146
/**
11751147
* Returns an index given an index mode.
11761148
*

map/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ console.log( ndarray2array( y ) );
239239

240240
- <span class="package-name">[`@stdlib/ndarray/filter`][@stdlib/ndarray/filter]</span><span class="delimiter">: </span><span class="description">return a shallow copy of an ndarray containing only those elements which pass a test implemented by a predicate function.</span>
241241
- <span class="package-name">[`@stdlib/ndarray/filter-map`][@stdlib/ndarray/filter-map]</span><span class="delimiter">: </span><span class="description">filter and map elements in an input ndarray to elements in a new output ndarray according to a callback function.</span>
242-
- <span class="package-name">[`@stdlib/ndarray/for-each`][@stdlib/ndarray/for-each]</span><span class="delimiter">: </span><span class="description">invoke a callback function once for each ndarray element.</span>
243242
- <span class="package-name">[`@stdlib/ndarray/slice`][@stdlib/ndarray/slice]</span><span class="delimiter">: </span><span class="description">return a read-only view of an input ndarray.</span>
244243

245244
</section>
@@ -260,8 +259,6 @@ console.log( ndarray2array( y ) );
260259

261260
[@stdlib/ndarray/filter-map]: https://github.com/stdlib-js/ndarray/tree/main/filter-map
262261

263-
[@stdlib/ndarray/for-each]: https://github.com/stdlib-js/ndarray/tree/main/for-each
264-
265262
[@stdlib/ndarray/slice]: https://github.com/stdlib-js/ndarray/tree/main/slice
266263

267264
<!-- </related-links> -->

0 commit comments

Comments
 (0)