Skip to content

Commit f71c8ef

Browse files
committed
Auto-generated commit
1 parent 720ff5f commit f71c8ef

2 files changed

Lines changed: 121 additions & 0 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13+
- [`e8b00ab`](https://github.com/stdlib-js/stdlib/commit/e8b00abfb7e1a012c9df982553c6ede3f6b261d9) - add `unshift` to namespace
14+
- [`d703ebd`](https://github.com/stdlib-js/stdlib/commit/d703ebd30fb8f62c7e3718074648bb901de0c267) - add `spreadDimensions` to namespace
15+
- [`853269d`](https://github.com/stdlib-js/stdlib/commit/853269d40f022bbeb9dfb3b751ec9e3da769e1db) - add `some` to namespace
16+
- [`e4dc41b`](https://github.com/stdlib-js/stdlib/commit/e4dc41b5cb957c29d5035de9f1a03b23596f5df2) - add `push` to namespace
17+
- [`2b44a14`](https://github.com/stdlib-js/stdlib/commit/2b44a14f3e9320f09189749176998ed6ce21d459) - add `prependSingletonDimensions` to namespace
18+
- [`6438f89`](https://github.com/stdlib-js/stdlib/commit/6438f8920f0cdbb525f7b1a1b4c818806e48da2b) - add `flipud` to namespace
19+
- [`5a4177b`](https://github.com/stdlib-js/stdlib/commit/5a4177bef249b76469c6cd06218acf33e72762d5) - add `fliplr` to namespace
20+
- [`9a7bd40`](https://github.com/stdlib-js/stdlib/commit/9a7bd407645ceeac99c6ac8bf46a905dad66739d) - add `flattenFromBy` to namespace
21+
- [`f53b521`](https://github.com/stdlib-js/stdlib/commit/f53b521efeef869b0ef0ccf07e878bdeaa2fed12) - add `findLast` to namespace
22+
- [`39c40c5`](https://github.com/stdlib-js/stdlib/commit/39c40c569825bc185a8e8a802452ed1ebaed7ece) - add `concat1d` to namespace
23+
- [`78d37a0`](https://github.com/stdlib-js/stdlib/commit/78d37a025058a2260ccfe38ff5ead8ab9e09af3e) - add `scalar2ndarrayLike` to namespace
1324
- [`2b0c11f`](https://github.com/stdlib-js/stdlib/commit/2b0c11f5339edc83e5de241d702230e73552136d) - add `ndarray/from-scalar-like` [(#9940)](https://github.com/stdlib-js/stdlib/pull/9940)
1425
- [`793a38c`](https://github.com/stdlib-js/stdlib/commit/793a38c29f31677807e0cf6748f1ca54fbbef4ec) - add `toLocaleString` method to `ndarray/base/ctor` [(#9435)](https://github.com/stdlib-js/stdlib/pull/9435)
1526
- [`7b69002`](https://github.com/stdlib-js/stdlib/commit/7b69002e03bd424815f80e156e0994f150e80175) - ensure support for non-string dtypes and update tests to use functional accessors
@@ -739,6 +750,17 @@ A total of 43 issues were closed in this release:
739750

740751
<details>
741752

753+
- [`e8b00ab`](https://github.com/stdlib-js/stdlib/commit/e8b00abfb7e1a012c9df982553c6ede3f6b261d9) - **feat:** add `unshift` to namespace _(by Athan Reines)_
754+
- [`d703ebd`](https://github.com/stdlib-js/stdlib/commit/d703ebd30fb8f62c7e3718074648bb901de0c267) - **feat:** add `spreadDimensions` to namespace _(by Athan Reines)_
755+
- [`853269d`](https://github.com/stdlib-js/stdlib/commit/853269d40f022bbeb9dfb3b751ec9e3da769e1db) - **feat:** add `some` to namespace _(by Athan Reines)_
756+
- [`e4dc41b`](https://github.com/stdlib-js/stdlib/commit/e4dc41b5cb957c29d5035de9f1a03b23596f5df2) - **feat:** add `push` to namespace _(by Athan Reines)_
757+
- [`2b44a14`](https://github.com/stdlib-js/stdlib/commit/2b44a14f3e9320f09189749176998ed6ce21d459) - **feat:** add `prependSingletonDimensions` to namespace _(by Athan Reines)_
758+
- [`6438f89`](https://github.com/stdlib-js/stdlib/commit/6438f8920f0cdbb525f7b1a1b4c818806e48da2b) - **feat:** add `flipud` to namespace _(by Athan Reines)_
759+
- [`5a4177b`](https://github.com/stdlib-js/stdlib/commit/5a4177bef249b76469c6cd06218acf33e72762d5) - **feat:** add `fliplr` to namespace _(by Athan Reines)_
760+
- [`9a7bd40`](https://github.com/stdlib-js/stdlib/commit/9a7bd407645ceeac99c6ac8bf46a905dad66739d) - **feat:** add `flattenFromBy` to namespace _(by Athan Reines)_
761+
- [`f53b521`](https://github.com/stdlib-js/stdlib/commit/f53b521efeef869b0ef0ccf07e878bdeaa2fed12) - **feat:** add `findLast` to namespace _(by Athan Reines)_
762+
- [`39c40c5`](https://github.com/stdlib-js/stdlib/commit/39c40c569825bc185a8e8a802452ed1ebaed7ece) - **feat:** add `concat1d` to namespace _(by Athan Reines)_
763+
- [`78d37a0`](https://github.com/stdlib-js/stdlib/commit/78d37a025058a2260ccfe38ff5ead8ab9e09af3e) - **feat:** add `scalar2ndarrayLike` to namespace _(by Athan Reines)_
742764
- [`9bdd54a`](https://github.com/stdlib-js/stdlib/commit/9bdd54a97d6458edeb891ac49cbcffa86470e354) - **docs:** update description _(by Athan Reines)_
743765
- [`2b0c11f`](https://github.com/stdlib-js/stdlib/commit/2b0c11f5339edc83e5de241d702230e73552136d) - **feat:** add `ndarray/from-scalar-like` [(#9940)](https://github.com/stdlib-js/stdlib/pull/9940) _(by Muhammad Haris, Athan Reines)_
744766
- [`793a38c`](https://github.com/stdlib-js/stdlib/commit/793a38c29f31677807e0cf6748f1ca54fbbef4ec) - **feat:** add `toLocaleString` method to `ndarray/base/ctor` [(#9435)](https://github.com/stdlib-js/stdlib/pull/9435) _(by Muhammad Haris, Athan Reines)_

lib/index.js

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,15 @@ setReadOnly( ns, 'castingModes', require( './../casting-modes' ) );
117117
*/
118118
setReadOnly( ns, 'concat', require( './../concat' ) );
119119

120+
/**
121+
* @name concat1d
122+
* @memberof ns
123+
* @readonly
124+
* @type {Function}
125+
* @see {@link module:@stdlib/ndarray/concat1d}
126+
*/
127+
setReadOnly( ns, 'concat1d', require( './../concat1d' ) );
128+
120129
/**
121130
* @name copy
122131
* @memberof ns
@@ -306,6 +315,15 @@ setReadOnly( ns, 'filterMap', require( './../filter-map' ) );
306315
*/
307316
setReadOnly( ns, 'find', require( './../find' ) );
308317

318+
/**
319+
* @name findLast
320+
* @memberof ns
321+
* @readonly
322+
* @type {Function}
323+
* @see {@link module:@stdlib/ndarray/find-last}
324+
*/
325+
setReadOnly( ns, 'findLast', require( './../find-last' ) );
326+
309327
/**
310328
* @name flag
311329
* @memberof ns
@@ -351,6 +369,33 @@ setReadOnly( ns, 'flattenBy', require( './../flatten-by' ) );
351369
*/
352370
setReadOnly( ns, 'flattenFrom', require( './../flatten-from' ) );
353371

372+
/**
373+
* @name flattenFromBy
374+
* @memberof ns
375+
* @readonly
376+
* @type {Function}
377+
* @see {@link module:@stdlib/ndarray/flatten-from-by}
378+
*/
379+
setReadOnly( ns, 'flattenFromBy', require( './../flatten-from-by' ) );
380+
381+
/**
382+
* @name fliplr
383+
* @memberof ns
384+
* @readonly
385+
* @type {Function}
386+
* @see {@link module:@stdlib/ndarray/fliplr}
387+
*/
388+
setReadOnly( ns, 'fliplr', require( './../fliplr' ) );
389+
390+
/**
391+
* @name flipud
392+
* @memberof ns
393+
* @readonly
394+
* @type {Function}
395+
* @see {@link module:@stdlib/ndarray/flipud}
396+
*/
397+
setReadOnly( ns, 'flipud', require( './../flipud' ) );
398+
354399
/**
355400
* @name forEach
356401
* @memberof ns
@@ -369,6 +414,15 @@ setReadOnly( ns, 'forEach', require( './../for-each' ) );
369414
*/
370415
setReadOnly( ns, 'scalar2ndarray', require( './../from-scalar' ) );
371416

417+
/**
418+
* @name scalar2ndarrayLike
419+
* @memberof ns
420+
* @readonly
421+
* @type {Function}
422+
* @see {@link module:@stdlib/ndarray/from-scalar-like}
423+
*/
424+
setReadOnly( ns, 'scalar2ndarrayLike', require( './../from-scalar-like' ) );
425+
372426
/**
373427
* @name includes
374428
* @memberof ns
@@ -558,6 +612,15 @@ setReadOnly( ns, 'outputDataTypePolicies', require( './../output-dtype-policies'
558612
*/
559613
setReadOnly( ns, 'pop', require( './../pop' ) );
560614

615+
/**
616+
* @name prependSingletonDimensions
617+
* @memberof ns
618+
* @readonly
619+
* @type {Function}
620+
* @see {@link module:@stdlib/ndarray/prepend-singleton-dimensions}
621+
*/
622+
setReadOnly( ns, 'prependSingletonDimensions', require( './../prepend-singleton-dimensions' ) );
623+
561624
/**
562625
* @name promotionRules
563626
* @memberof ns
@@ -567,6 +630,15 @@ setReadOnly( ns, 'pop', require( './../pop' ) );
567630
*/
568631
setReadOnly( ns, 'promotionRules', require( './../promotion-rules' ) );
569632

633+
/**
634+
* @name push
635+
* @memberof ns
636+
* @readonly
637+
* @type {Function}
638+
* @see {@link module:@stdlib/ndarray/push}
639+
*/
640+
setReadOnly( ns, 'push', require( './../push' ) );
641+
570642
/**
571643
* @name reject
572644
* @memberof ns
@@ -693,6 +765,15 @@ setReadOnly( ns, 'sliceFrom', require( './../slice-from' ) );
693765
*/
694766
setReadOnly( ns, 'sliceTo', require( './../slice-to' ) );
695767

768+
/**
769+
* @name some
770+
* @memberof ns
771+
* @readonly
772+
* @type {Function}
773+
* @see {@link module:@stdlib/ndarray/some}
774+
*/
775+
setReadOnly( ns, 'some', require( './../some' ) );
776+
696777
/**
697778
* @name someBy
698779
* @memberof ns
@@ -702,6 +783,15 @@ setReadOnly( ns, 'sliceTo', require( './../slice-to' ) );
702783
*/
703784
setReadOnly( ns, 'someBy', require( './../some-by' ) );
704785

786+
/**
787+
* @name spreadDimensions
788+
* @memberof ns
789+
* @readonly
790+
* @type {Function}
791+
* @see {@link module:@stdlib/ndarray/spread-dimensions}
792+
*/
793+
setReadOnly( ns, 'spreadDimensions', require( './../spread-dimensions' ) );
794+
705795
/**
706796
* @name stride
707797
* @memberof ns
@@ -765,6 +855,15 @@ setReadOnly( ns, 'ndarray2json', require( './../to-json' ) );
765855
*/
766856
setReadOnly( ns, 'toReversed', require( './../to-reversed' ) );
767857

858+
/**
859+
* @name unshift
860+
* @memberof ns
861+
* @readonly
862+
* @type {Function}
863+
* @see {@link module:@stdlib/ndarray/unshift}
864+
*/
865+
setReadOnly( ns, 'unshift', require( './../unshift' ) );
866+
768867
/**
769868
* @name vector
770869
* @memberof ns

0 commit comments

Comments
 (0)