Skip to content

Commit 6487747

Browse files
committed
Auto-generated commit
1 parent 2a37c8e commit 6487747

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-04-19)
7+
## Unreleased (2025-04-20)
88

99
<section class="packages">
1010

@@ -64,6 +64,10 @@
6464

6565
##### Features
6666

67+
- [`28a1564`](https://github.com/stdlib-js/stdlib/commit/28a1564b9977c9c0aebb9806c2a4cbb10336b234) - add `reshape` to namespace
68+
- [`7d4246f`](https://github.com/stdlib-js/stdlib/commit/7d4246ff5c4607dc228a37c36a9a792181ba2c11) - add `linspace2d` to namespace
69+
- [`60bcff3`](https://github.com/stdlib-js/stdlib/commit/60bcff3e6b8998206890401c120501459c7bbf7d) - add `countIfs` to namespace
70+
- [`8f14b84`](https://github.com/stdlib-js/stdlib/commit/8f14b84ea7dfb85088efe9ad99548c91c06c47d3) - add `banded`, `symmetric`, and `symmetricBanded` to namespace
6771
- [`7899d23`](https://github.com/stdlib-js/stdlib/commit/7899d23195464e9fc0a10b1f0e57b5aa230de5e2) - update namespace TypeScript declarations [(#6459)](https://github.com/stdlib-js/stdlib/pull/6459)
6872
- [`e8bb580`](https://github.com/stdlib-js/stdlib/commit/e8bb580f445dcbeeb03e458def428d9e820ab808) - add `lastIndexOfSameValue` to namespace
6973
- [`e8a96a1`](https://github.com/stdlib-js/stdlib/commit/e8a96a17652f957f69c041a2f7292bee1b827aeb) - add `indexOfSameValue` to namespace
@@ -1759,6 +1763,10 @@ A total of 14 people contributed to this release. Thank you to the following con
17591763

17601764
<details>
17611765

1766+
- [`28a1564`](https://github.com/stdlib-js/stdlib/commit/28a1564b9977c9c0aebb9806c2a4cbb10336b234) - **feat:** add `reshape` to namespace _(by Athan Reines)_
1767+
- [`7d4246f`](https://github.com/stdlib-js/stdlib/commit/7d4246ff5c4607dc228a37c36a9a792181ba2c11) - **feat:** add `linspace2d` to namespace _(by Athan Reines)_
1768+
- [`60bcff3`](https://github.com/stdlib-js/stdlib/commit/60bcff3e6b8998206890401c120501459c7bbf7d) - **feat:** add `countIfs` to namespace _(by Athan Reines)_
1769+
- [`8f14b84`](https://github.com/stdlib-js/stdlib/commit/8f14b84ea7dfb85088efe9ad99548c91c06c47d3) - **feat:** add `banded`, `symmetric`, and `symmetricBanded` to namespace _(by Athan Reines)_
17621770
- [`c58adef`](https://github.com/stdlib-js/stdlib/commit/c58adefe40e133648a8ccdbbea987fde9b6e9bd8) - **feat:** add `array/base/symmetric-banded` namespace _(by Athan Reines)_
17631771
- [`61b8b4b`](https://github.com/stdlib-js/stdlib/commit/61b8b4b9d65ccda7f6e4b39f7d7b0830b1d8c4f7) - **feat:** add `array/base/symmetric` namespace _(by Athan Reines)_
17641772
- [`8213823`](https://github.com/stdlib-js/stdlib/commit/8213823c17f02cc771671778ab3de0205256e33e) - **feat:** add `array/base/banded` namespace _(by Athan Reines)_

base/lib/index.js

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,15 @@ setReadOnly( ns, 'at5d', require( './../../base/at5d' ) );
171171
*/
172172
setReadOnly( ns, 'atnd', require( './../../base/atnd' ) );
173173

174+
/**
175+
* @name banded
176+
* @memberof ns
177+
* @readonly
178+
* @type {Namespace}
179+
* @see {@link module:@stdlib/array/base/banded}
180+
*/
181+
setReadOnly( ns, 'banded', require( './../../base/banded' ) );
182+
174183
/**
175184
* @name bifurcateEntries
176185
* @memberof ns
@@ -504,6 +513,15 @@ setReadOnly( ns, 'countFalsy', require( './../../base/count-falsy' ) );
504513
*/
505514
setReadOnly( ns, 'countIf', require( './../../base/count-if' ) );
506515

516+
/**
517+
* @name countIfs
518+
* @memberof ns
519+
* @readonly
520+
* @type {Function}
521+
* @see {@link module:@stdlib/array/base/count-ifs}
522+
*/
523+
setReadOnly( ns, 'countIfs', require( './../../base/count-ifs' ) );
524+
507525
/**
508526
* @name countSameValue
509527
* @memberof ns
@@ -1071,6 +1089,15 @@ setReadOnly( ns, 'lastIndexOfSameValue', require( './../../base/last-index-of-sa
10711089
*/
10721090
setReadOnly( ns, 'linspace', require( './../../base/linspace' ) );
10731091

1092+
/**
1093+
* @name linspace2d
1094+
* @memberof ns
1095+
* @readonly
1096+
* @type {Function}
1097+
* @see {@link module:@stdlib/array/base/linspace2d}
1098+
*/
1099+
setReadOnly( ns, 'linspace2d', require( './../../base/linspace2d' ) );
1100+
10741101
/**
10751102
* @name logspace
10761103
* @memberof ns
@@ -1476,6 +1503,15 @@ setReadOnly( ns, 'reject', require( './../../base/reject' ) );
14761503
*/
14771504
setReadOnly( ns, 'removeAt', require( './../../base/remove-at' ) );
14781505

1506+
/**
1507+
* @name reshape
1508+
* @memberof ns
1509+
* @readonly
1510+
* @type {Function}
1511+
* @see {@link module:@stdlib/array/base/reshape}
1512+
*/
1513+
setReadOnly( ns, 'reshape', require( './../../base/reshape' ) );
1514+
14791515
/**
14801516
* @name resolveGetter
14811517
* @memberof ns
@@ -1575,6 +1611,24 @@ setReadOnly( ns, 'strided2array4d', require( './../../base/strided2array4d' ) );
15751611
*/
15761612
setReadOnly( ns, 'strided2array5d', require( './../../base/strided2array5d' ) );
15771613

1614+
/**
1615+
* @name symmetric
1616+
* @memberof ns
1617+
* @readonly
1618+
* @type {Namespace}
1619+
* @see {@link module:@stdlib/array/base/symmetric}
1620+
*/
1621+
setReadOnly( ns, 'symmetric', require( './../../base/symmetric' ) );
1622+
1623+
/**
1624+
* @name symmetricBanded
1625+
* @memberof ns
1626+
* @readonly
1627+
* @type {Namespace}
1628+
* @see {@link module:@stdlib/array/base/symmetric-banded}
1629+
*/
1630+
setReadOnly( ns, 'symmetricBanded', require( './../../base/symmetric-banded' ) );
1631+
15781632
/**
15791633
* @name take
15801634
* @memberof ns

0 commit comments

Comments
 (0)