You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2026-03-27)
7
+
## Unreleased (2026-03-29)
8
8
9
9
<sectionclass="features">
10
10
@@ -99,6 +99,9 @@ A total of 2 issues were closed in this release:
99
99
100
100
<details>
101
101
102
+
-[`ba129b3`](https://github.com/stdlib-js/stdlib/commit/ba129b35eed5099aece6caa686c3794e9a6b08b5) - **docs:** update namespace table of contents [(#11198)](https://github.com/stdlib-js/stdlib/pull/11198)_(by stdlib-bot)_
103
+
-[`a0169bc`](https://github.com/stdlib-js/stdlib/commit/a0169bcfc0d05ac94c206ac5d6d0a898ec304463) - **docs:** remove unused `ndarray2array` requires from README usage examples [(#11194)](https://github.com/stdlib-js/stdlib/pull/11194)_(by Philipp Burckhardt)_
104
+
-[`3bf34ec`](https://github.com/stdlib-js/stdlib/commit/3bf34ec6df7f894f7cbee125eb3f655ebb2d6a4e) - **chore:** fix typos, grammar, and minor issues across multiple packages [(#11167)](https://github.com/stdlib-js/stdlib/pull/11167)_(by Philipp Burckhardt)_
-[`762f410`](https://github.com/stdlib-js/stdlib/commit/762f410098b29afa3823ab1191553101db0dcead) - **fix:** correct grammar in ndarray type test comments [(#11154)](https://github.com/stdlib-js/stdlib/pull/11154)_(by Matt Van Horn)_
104
107
-[`364e294`](https://github.com/stdlib-js/stdlib/commit/364e294fbd4ebd149d86b8f7996da4b00b6c6b3b) - **feat:** add `nulls` to namespace _(by Athan Reines)_
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,7 @@ var o = ns;
160
160
- <spanclass="signature">[`minUnsignedIntegerDataType( value )`][@stdlib/ndarray/base/min-unsigned-integer-dtype]</span><spanclass="delimiter">: </span><spanclass="description">determine the minimum ndarray data type for storing a provided unsigned integer value.</span>
161
161
- <spanclass="signature">[`minViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/min-view-buffer-index]</span><spanclass="delimiter">: </span><spanclass="description">compute the minimum linear index in an underlying data buffer accessible to an array view.</span>
162
162
- <spanclass="signature">[`minmaxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/minmax-view-buffer-index]</span><spanclass="delimiter">: </span><spanclass="description">compute the minimum and maximum linear indices in an underlying data buffer which are accessible to an array view.</span>
163
+
- <spanclass="signature">[`nans( dtype, shape, order )`][@stdlib/ndarray/base/nans]</span><spanclass="delimiter">: </span><spanclass="description">create a NaN-filled ndarray having a specified shape and data type.</span>
163
164
- <spanclass="signature">[`ndarraylike2ndarray( x )`][@stdlib/ndarray/base/ndarraylike2ndarray]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to an `ndarray`.</span>
164
165
- <spanclass="signature">[`ndarraylike2object( x )`][@stdlib/ndarray/base/ndarraylike2object]</span><spanclass="delimiter">: </span><spanclass="description">convert an `ndarray`-like object to an object likely to have the same "shape".</span>
165
166
- <spanclass="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/base/ndarraylike2scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to a scalar value.</span>
@@ -174,9 +175,12 @@ var o = ns;
174
175
- <spanclass="signature">[`nullaryStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/nullary-strided1d]</span><spanclass="delimiter">: </span><spanclass="description">apply a one-dimensional strided array function to a list of specified dimensions in an ndarray.</span>
175
176
- <spanclass="signature">[`nullaryBlockSize( dtypeX )`][@stdlib/ndarray/base/nullary-tiling-block-size]</span><spanclass="delimiter">: </span><spanclass="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
176
177
- <spanclass="signature">[`nullary( arrays, fcn )`][@stdlib/ndarray/base/nullary]</span><spanclass="delimiter">: </span><spanclass="description">apply a nullary callback and assign results to elements in an output ndarray.</span>
178
+
- <spanclass="signature">[`nulls( dtype, shape, order )`][@stdlib/ndarray/base/nulls]</span><spanclass="delimiter">: </span><spanclass="description">create a null-filled ndarray having a specified shape and data type.</span>
177
179
- <spanclass="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/base/numel-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
178
180
- <spanclass="signature">[`numel( shape )`][@stdlib/ndarray/base/numel]</span><spanclass="delimiter">: </span><spanclass="description">return the number of elements in an array.</span>
179
181
- <spanclass="signature">[`offset( x )`][@stdlib/ndarray/base/offset]</span><spanclass="delimiter">: </span><spanclass="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
182
+
- <spanclass="signature">[`onesLike( x )`][@stdlib/ndarray/base/ones-like]</span><spanclass="delimiter">: </span><spanclass="description">create a ones-filled ndarray having the same shape and data type as a provided ndarray.</span>
183
+
- <spanclass="signature">[`ones( dtype, shape, order )`][@stdlib/ndarray/base/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a ones-filled ndarray having a specified shape and data type.</span>
180
184
- <spanclass="signature">[`order( x )`][@stdlib/ndarray/base/order]</span><spanclass="delimiter">: </span><spanclass="description">return the layout order of a provided ndarray.</span>
181
185
- <spanclass="signature">[`outputDataType( dtypes, policy )`][@stdlib/ndarray/base/output-dtype]</span><spanclass="delimiter">: </span><spanclass="description">resolve the output ndarray data type from a list of input ndarray data types.</span>
182
186
- <spanclass="signature">[`outputPolicyEnum2Str( policy )`][@stdlib/ndarray/base/output-policy-enum2str]</span><spanclass="delimiter">: </span><spanclass="description">return the policy string associated with an output ndarray data type policy enumeration constant.</span>
0 commit comments