Skip to content

Commit 73e699d

Browse files
committed
Auto-generated commit
1 parent 762acc3 commit 73e699d

4 files changed

Lines changed: 36 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44

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

7-
## Unreleased (2026-04-20)
7+
## Unreleased (2026-04-21)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`4a00996`](https://github.com/stdlib-js/stdlib/commit/4a0099621945f4fb17cd8bde8d7375715e309b6e) - add `reinterpret-complex128` to namespace
14+
- [`8860b05`](https://github.com/stdlib-js/stdlib/commit/8860b05c83ef17376bfa54b47c2aaa57a92b2fe1) - add `rot90` to namespace
15+
- [`ac1d507`](https://github.com/stdlib-js/stdlib/commit/ac1d5075defbd8d150a4102d9bab8b85c66caa68) - add `broadcastScalarLike` to namespace
1316
- [`7368bff`](https://github.com/stdlib-js/stdlib/commit/7368bff8ade81ae99638f53ceacc8b5ab5d04c74) - add `ndarray/base/rot90` [(#11660)](https://github.com/stdlib-js/stdlib/pull/11660)
1417
- [`82f105c`](https://github.com/stdlib-js/stdlib/commit/82f105ccb1920ec6f48d0af692819a1da40d3b7f) - add `ndarray/broadcast-scalar-like` [(#11630)](https://github.com/stdlib-js/stdlib/pull/11630)
1518
- [`1615c51`](https://github.com/stdlib-js/stdlib/commit/1615c51bd03478de8adedf82e5718ea48ecba290) - add `ndarray/base/reinterpret-complex128` [(#11629)](https://github.com/stdlib-js/stdlib/pull/11629)
@@ -868,6 +871,10 @@ A total of 49 issues were closed in this release:
868871

869872
<details>
870873

874+
- [`4a00996`](https://github.com/stdlib-js/stdlib/commit/4a0099621945f4fb17cd8bde8d7375715e309b6e) - **feat:** add `reinterpret-complex128` to namespace _(by Athan Reines)_
875+
- [`f382177`](https://github.com/stdlib-js/stdlib/commit/f38217702114041731ee1dd0f44afc7d36679704) - **docs:** update ToC _(by Athan Reines)_
876+
- [`8860b05`](https://github.com/stdlib-js/stdlib/commit/8860b05c83ef17376bfa54b47c2aaa57a92b2fe1) - **feat:** add `rot90` to namespace _(by Athan Reines)_
877+
- [`ac1d507`](https://github.com/stdlib-js/stdlib/commit/ac1d5075defbd8d150a4102d9bab8b85c66caa68) - **feat:** add `broadcastScalarLike` to namespace _(by Athan Reines)_
871878
- [`7368bff`](https://github.com/stdlib-js/stdlib/commit/7368bff8ade81ae99638f53ceacc8b5ab5d04c74) - **feat:** add `ndarray/base/rot90` [(#11660)](https://github.com/stdlib-js/stdlib/pull/11660) _(by Muhammad Haris, Athan Reines)_
872879
- [`82f105c`](https://github.com/stdlib-js/stdlib/commit/82f105ccb1920ec6f48d0af692819a1da40d3b7f) - **feat:** add `ndarray/broadcast-scalar-like` [(#11630)](https://github.com/stdlib-js/stdlib/pull/11630) _(by Muhammad Haris, Athan Reines)_
873880
- [`b7f85c2`](https://github.com/stdlib-js/stdlib/commit/b7f85c29d4147a1c0194329881eb07ef695ddaee) - **fix:** use correct validation package _(by Athan Reines)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The namespace exports the following functions to create multidimensional arrays:
101101

102102
The namespace exports the following functions to manipulate multidimensional arrays:
103103

104-
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|colcat|concat|concat1d|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|rotr90|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|unshift|vconcat|with)"> -->
104+
<!-- <toc pattern="+(broadcast-array|broadcast-arrays|broadcast-scalar|broadcast-scalar-like|colcat|concat|concat1d|fill|fill-by|fill-slice|flatten|flatten-by|flatten-from|flatten-from-by|flip|fliplr|flipud|hconcat|map|maybe-broadcast-array|maybe-broadcast-arrays|pop|prepend-singleton-dimensions|push|remove-singleton-dimensions|reverse|reverse-dimension|rotr90|rowcat|shift|slice|slice-assign|slice-dimension|slice-dimension-from|slice-dimension-to|slice-from|slice-to|spread-dimensions|to-flippedlr|to-flippedud|to-reversed|to-reversed-dimension|unshift|vconcat|with)"> -->
105105

106106
<div class="namespace-toc">
107107

base/lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,15 @@ setReadOnly( ns, 'quinaryLoopOrder', require( './../../base/quinary-loop-interch
11561156
*/
11571157
setReadOnly( ns, 'quinaryBlockSize', require( './../../base/quinary-tiling-block-size' ) );
11581158

1159+
/**
1160+
* @name reinterpretComplex128
1161+
* @memberof ns
1162+
* @readonly
1163+
* @type {Function}
1164+
* @see {@link module:@stdlib/ndarray/base/reinterpret-complex128}
1165+
*/
1166+
setReadOnly( ns, 'reinterpretComplex128', require( './../../base/reinterpret-complex128' ) );
1167+
11591168
/**
11601169
* @name removeSingletonDimensions
11611170
* @memberof ns
@@ -1183,6 +1192,15 @@ setReadOnly( ns, 'reverse', require( './../../base/reverse' ) );
11831192
*/
11841193
setReadOnly( ns, 'reverseDimension', require( './../../base/reverse-dimension' ) );
11851194

1195+
/**
1196+
* @name rot90
1197+
* @memberof ns
1198+
* @readonly
1199+
* @type {Function}
1200+
* @see {@link module:@stdlib/ndarray/base/rot90}
1201+
*/
1202+
setReadOnly( ns, 'rot90', require( './../../base/rot90' ) );
1203+
11861204
/**
11871205
* @name rotl90
11881206
* @memberof ns

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ setReadOnly( ns, 'broadcastArrays', require( './../broadcast-arrays' ) );
108108
*/
109109
setReadOnly( ns, 'broadcastScalar', require( './../broadcast-scalar' ) );
110110

111+
/**
112+
* @name broadcastScalarLike
113+
* @memberof ns
114+
* @readonly
115+
* @type {Function}
116+
* @see {@link module:@stdlib/ndarray/broadcast-scalar-like}
117+
*/
118+
setReadOnly( ns, 'broadcastScalarLike', require( './../broadcast-scalar-like' ) );
119+
111120
/**
112121
* @name castingModes
113122
* @memberof ns

0 commit comments

Comments
 (0)