Skip to content

Commit 405ca29

Browse files
committed
Auto-generated commit
1 parent 655862e commit 405ca29

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 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 (2026-05-06)
7+
## Unreleased (2026-05-07)
88

99
<section class="features">
1010

@@ -165,6 +165,8 @@ A total of 4 issues were closed in this release:
165165

166166
<details>
167167

168+
- [`11fb87d`](https://github.com/stdlib-js/stdlib/commit/11fb87dac7ae762d325640afbb400d6aa5fc3736) - **docs:** update namespace table of contents [(#11986)](https://github.com/stdlib-js/stdlib/pull/11986) _(by stdlib-bot)_
169+
- [`2993e90`](https://github.com/stdlib-js/stdlib/commit/2993e90541c0e9dca7201e822668c8ca026771f1) - **chore:** follow-up fixes [(#11966)](https://github.com/stdlib-js/stdlib/pull/11966) _(by Philipp Burckhardt)_
168170
- [`e0a3342`](https://github.com/stdlib-js/stdlib/commit/e0a33421dde2803276ad95491519f8839415d93c) - **feat:** add `outputOrder` to namespace _(by Athan Reines)_
169171
- [`52bc84e`](https://github.com/stdlib-js/stdlib/commit/52bc84e510174894e39456fc301d1f9045ae444b) - **feat:** add `ndarray/base/output-order` _(by Athan Reines)_
170172
- [`31c91e5`](https://github.com/stdlib-js/stdlib/commit/31c91e5a0dc350a5c871d05e609340133413f36d) - **refactor:** simplify branching to optimize most common path _(by Athan Reines)_

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ var o = ns;
108108
- <span class="signature">[`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]</span><span class="delimiter">: </span><span class="description">return the data type string associated with a provided single letter character abbreviation.</span>
109109
- <span class="signature">[`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]</span><span class="delimiter">: </span><span class="description">restrict an index to the interval `[0,max]`.</span>
110110
- <span class="signature">[`complementShape( shape, dims )`][@stdlib/ndarray/base/complement-shape]</span><span class="delimiter">: </span><span class="description">return the shape defined by the dimensions which are not included in a list of dimensions.</span>
111+
- <span class="signature">[`consensusOrder( strides )`][@stdlib/ndarray/base/consensus-order]</span><span class="delimiter">: </span><span class="description">resolve the most common underlying storage layout.</span>
111112
- <span class="signature">[`copy( x )`][@stdlib/ndarray/base/copy]</span><span class="delimiter">: </span><span class="description">copy an input ndarray to a new ndarray having the same shape and data type.</span>
112113
- <span class="signature">[`countFalsy( arrays )`][@stdlib/ndarray/base/count-falsy]</span><span class="delimiter">: </span><span class="description">count the number of falsy elements in an ndarray.</span>
113114
- <span class="signature">[`countIf( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/count-if]</span><span class="delimiter">: </span><span class="description">count the number of elements in an ndarray which pass a test implemented by a predicate function.</span>
@@ -191,6 +192,7 @@ var o = ns;
191192
- <span class="signature">[`ones( dtype, shape, order )`][@stdlib/ndarray/base/ones]</span><span class="delimiter">: </span><span class="description">create a ones-filled ndarray having a specified shape and data type.</span>
192193
- <span class="signature">[`order( x )`][@stdlib/ndarray/base/order]</span><span class="delimiter">: </span><span class="description">return the layout order of a provided ndarray.</span>
193194
- <span class="signature">[`outputDataType( dtypes, policy )`][@stdlib/ndarray/base/output-dtype]</span><span class="delimiter">: </span><span class="description">resolve the output ndarray data type from a list of input ndarray data types.</span>
195+
- <span class="signature">[`outputOrder( arrays )`][@stdlib/ndarray/base/output-order]</span><span class="delimiter">: </span><span class="description">resolves the order (i.e. memory layout) of an output ndarray according to a list of input ndarrays.</span>
194196
- <span class="signature">[`outputPolicyEnum2Str( policy )`][@stdlib/ndarray/base/output-policy-enum2str]</span><span class="delimiter">: </span><span class="description">return the policy string associated with an output ndarray data type policy enumeration constant.</span>
195197
- <span class="signature">[`outputPolicyResolveEnum( policy )`][@stdlib/ndarray/base/output-policy-resolve-enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with a supported ndarray data type policy value.</span>
196198
- <span class="signature">[`outputPolicyResolveStr( dtype )`][@stdlib/ndarray/base/output-policy-resolve-str]</span><span class="delimiter">: </span><span class="description">return the policy string associated with a supported ndarray data type policy value.</span>
@@ -245,6 +247,7 @@ var o = ns;
245247
- <span class="signature">[`toFlippedud( x )`][@stdlib/ndarray/base/to-flippedud]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements along the second-to-last dimension of an input ndarray is reversed.</span>
246248
- <span class="signature">[`toNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-normalized-indices]</span><span class="delimiter">: </span><span class="description">normalize a list of indices to the interval `[0,max]`.</span>
247249
- <span class="signature">[`toReversedDimension( x, dim )`][@stdlib/ndarray/base/to-reversed-dimension]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray along a specified dimension is reversed.</span>
250+
- <span class="signature">[`toReversedDimensions( x, dims )`][@stdlib/ndarray/base/to-reversed-dimensions]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray along specified dimensions is reversed.</span>
248251
- <span class="signature">[`toReversed( x )`][@stdlib/ndarray/base/to-reversed]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray is reversed along each dimension.</span>
249252
- <span class="signature">[`toRot180( x, dims )`][@stdlib/ndarray/base/to-rot180]</span><span class="delimiter">: </span><span class="description">return a new ndarray where an ndarray is rotated 180 degrees in a specified plane.</span>
250253
- <span class="signature">[`toRot90( x, dims, k )`][@stdlib/ndarray/base/to-rot90]</span><span class="delimiter">: </span><span class="description">return a new ndarray where an ndarray is rotated 90 degrees in a specified plane.</span>
@@ -470,6 +473,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
470473

471474
[@stdlib/ndarray/base/complement-shape]: https://github.com/stdlib-js/ndarray-base-complement-shape
472475

476+
[@stdlib/ndarray/base/consensus-order]: https://github.com/stdlib-js/ndarray-base-consensus-order
477+
473478
[@stdlib/ndarray/base/copy]: https://github.com/stdlib-js/ndarray-base-copy
474479

475480
[@stdlib/ndarray/base/count-falsy]: https://github.com/stdlib-js/ndarray-base-count-falsy
@@ -636,6 +641,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
636641

637642
[@stdlib/ndarray/base/output-dtype]: https://github.com/stdlib-js/ndarray-base-output-dtype
638643

644+
[@stdlib/ndarray/base/output-order]: https://github.com/stdlib-js/ndarray-base-output-order
645+
639646
[@stdlib/ndarray/base/output-policy-enum2str]: https://github.com/stdlib-js/ndarray-base-output-policy-enum2str
640647

641648
[@stdlib/ndarray/base/output-policy-resolve-enum]: https://github.com/stdlib-js/ndarray-base-output-policy-resolve-enum
@@ -744,6 +751,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
744751

745752
[@stdlib/ndarray/base/to-reversed-dimension]: https://github.com/stdlib-js/ndarray-base-to-reversed-dimension
746753

754+
[@stdlib/ndarray/base/to-reversed-dimensions]: https://github.com/stdlib-js/ndarray-base-to-reversed-dimensions
755+
747756
[@stdlib/ndarray/base/to-reversed]: https://github.com/stdlib-js/ndarray-base-to-reversed
748757

749758
[@stdlib/ndarray/base/to-rot180]: https://github.com/stdlib-js/ndarray-base-to-rot180

0 commit comments

Comments
 (0)