Skip to content

Commit 618cbf3

Browse files
committed
Auto-generated commit
1 parent 93a748f commit 618cbf3

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-01)
7+
## Unreleased (2025-09-03)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`2bcc0ba`](https://github.com/stdlib-js/stdlib/commit/2bcc0ba8dc6a3eee179e5e556bf4171afd35d3cf) - add missing exports to `ndarray` namespaces
1314
- [`50b84b5`](https://github.com/stdlib-js/stdlib/commit/50b84b54ffdfc65c9c92498f51120ef3a363a69e) - add `ndarray/base/find` [(#7426)](https://github.com/stdlib-js/stdlib/pull/7426)
1415
- [`b7b141b`](https://github.com/stdlib-js/stdlib/commit/b7b141b93a4d030ce23c6ebe50264bd910e5fdf2) - add `ndarray/base/any-by` [(#7664)](https://github.com/stdlib-js/stdlib/pull/7664)
1516
- [`8e8e3a4`](https://github.com/stdlib-js/stdlib/commit/8e8e3a410a266afa887a1c9f9df7f98833bfa4ea) - add `ndarray/with` [(#7971)](https://github.com/stdlib-js/stdlib/pull/7971)
@@ -501,6 +502,7 @@ A total of 24 issues were closed in this release:
501502

502503
<details>
503504

505+
- [`2bcc0ba`](https://github.com/stdlib-js/stdlib/commit/2bcc0ba8dc6a3eee179e5e556bf4171afd35d3cf) - **feat:** add missing exports to `ndarray` namespaces _(by Philipp Burckhardt)_
504506
- [`50b84b5`](https://github.com/stdlib-js/stdlib/commit/50b84b54ffdfc65c9c92498f51120ef3a363a69e) - **feat:** add `ndarray/base/find` [(#7426)](https://github.com/stdlib-js/stdlib/pull/7426) _(by Muhammad Haris, Athan Reines)_
505507
- [`9be4cfa`](https://github.com/stdlib-js/stdlib/commit/9be4cfa08c56d4d736bece90bb713d339db3d9cc) - **docs:** update range to match the one used in example file _(by Philipp Burckhardt)_
506508
- [`b7b141b`](https://github.com/stdlib-js/stdlib/commit/b7b141b93a4d030ce23c6ebe50264bd910e5fdf2) - **feat:** add `ndarray/base/any-by` [(#7664)](https://github.com/stdlib-js/stdlib/pull/7664) _(by Muhammad Haris, Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>

base/lib/index.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,24 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
4040
*/
4141
var ns = {};
4242

43+
/**
44+
* @name any
45+
* @memberof ns
46+
* @readonly
47+
* @type {Function}
48+
* @see {@link module:@stdlib/ndarray/base/any}
49+
*/
50+
setReadOnly( ns, 'any', require( './../../base/any' ) );
51+
52+
/**
53+
* @name anyBy
54+
* @memberof ns
55+
* @readonly
56+
* @type {Function}
57+
* @see {@link module:@stdlib/ndarray/base/any-by}
58+
*/
59+
setReadOnly( ns, 'anyBy', require( './../../base/any-by' ) );
60+
4361
/**
4462
* @name assert
4563
* @memberof ns
@@ -85,6 +103,15 @@ setReadOnly( ns, 'binaryLoopOrder', require( './../../base/binary-loop-interchan
85103
*/
86104
setReadOnly( ns, 'binaryOutputDataType', require( './../../base/binary-output-dtype' ) );
87105

106+
/**
107+
* @name binaryReduceStrided1d
108+
* @memberof ns
109+
* @readonly
110+
* @type {Function}
111+
* @see {@link module:@stdlib/ndarray/base/binary-reduce-strided1d}
112+
*/
113+
setReadOnly( ns, 'binaryReduceStrided1d', require( './../../base/binary-reduce-strided1d' ) );
114+
88115
/**
89116
* @name binaryBlockSize
90117
* @memberof ns
@@ -391,6 +418,15 @@ setReadOnly( ns, 'fill', require( './../../base/fill' ) );
391418
*/
392419
setReadOnly( ns, 'fillBy', require( './../../base/fill-by' ) );
393420

421+
/**
422+
* @name find
423+
* @memberof ns
424+
* @readonly
425+
* @type {Function}
426+
* @see {@link module:@stdlib/ndarray/base/find}
427+
*/
428+
setReadOnly( ns, 'find', require( './../../base/find' ) );
429+
394430
/**
395431
* @name flag
396432
* @memberof ns
@@ -679,6 +715,15 @@ setReadOnly( ns, 'nullary', require( './../../base/nullary' ) );
679715
*/
680716
setReadOnly( ns, 'nullaryLoopOrder', require( './../../base/nullary-loop-interchange-order' ) );
681717

718+
/**
719+
* @name nullaryStrided1d
720+
* @memberof ns
721+
* @readonly
722+
* @type {Function}
723+
* @see {@link module:@stdlib/ndarray/base/nullary-strided1d}
724+
*/
725+
setReadOnly( ns, 'nullaryStrided1d', require( './../../base/nullary-strided1d' ) );
726+
682727
/**
683728
* @name nullaryBlockSize
684729
* @memberof ns

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,15 @@ setReadOnly( ns, 'ndarray2json', require( './../to-json' ) );
639639
*/
640640
setReadOnly( ns, 'vector', require( './../vector' ) );
641641

642+
/**
643+
* @name with
644+
* @memberof ns
645+
* @readonly
646+
* @type {Function}
647+
* @see {@link module:@stdlib/ndarray/with}
648+
*/
649+
setReadOnly( ns, 'with', require( './../with' ) );
650+
642651
/**
643652
* @name zeros
644653
* @memberof ns

0 commit comments

Comments
 (0)