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
+2-1Lines changed: 2 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 (2024-12-23)
7
+
##Unreleased (2025-01-02)
8
8
9
9
<sectionclass="features">
10
10
@@ -22,6 +22,7 @@
22
22
23
23
<details>
24
24
25
+
-[`5e977ba`](https://github.com/stdlib-js/stdlib/commit/5e977ba129f9aa3e1d88ccba7db34a38f355f113) -**docs:** fix grammar and type annotation_(by Athan Reines)_
25
26
-[`5b71452`](https://github.com/stdlib-js/stdlib/commit/5b71452bd40811341a2e4eaab018c3cc17c5feac) -**docs:** update related packages sections[(#4135)](https://github.com/stdlib-js/stdlib/pull/4135)_(by stdlib-bot, Athan Reines)_
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ The function accepts the following arguments:
111
111
The function accepts the following options:
112
112
113
113
-**dtype**: output ndarray[data type][@stdlib/ndarray/dtypes]. If not specified, the output ndarray[data type][@stdlib/ndarray/dtypes] is inferred from the input[ndarray][@stdlib/ndarray/ctor].
114
-
-**order**: index iteration order. By default, the function iterates over elements according to the[layout order][@stdlib/ndarray/orders] of the provided[ndarray][@stdlib/ndarray/ctor]. Accordingly, for row-major input[ndarrays][@stdlib/ndarray/ctor], the last dimension indices increment fastest. For column-major input[ndarrays][@stdlib/ndarray/ctor], the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanor, regardless of the input[ndarray][@stdlib/ndarray/ctor]'s layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input[ndarray][@stdlib/ndarray/ctor] may, in some circumstances, result in performance degradation due to cache misses. Must be either`'row-major'` or`'column-major'`.
114
+
-**order**: index iteration order. By default, the function iterates over elements according to the[layout order][@stdlib/ndarray/orders] of the provided[ndarray][@stdlib/ndarray/ctor]. Accordingly, for row-major input[ndarrays][@stdlib/ndarray/ctor], the last dimension indices increment fastest. For column-major input[ndarrays][@stdlib/ndarray/ctor], the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanner, regardless of the input[ndarray][@stdlib/ndarray/ctor]'s layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input[ndarray][@stdlib/ndarray/ctor] may, in some circumstances, result in performance degradation due to cache misses. Must be either`'row-major'` or`'column-major'`.
115
115
116
116
By default, the output ndarray[data type][@stdlib/ndarray/dtypes] is inferred from the input[ndarray][@stdlib/ndarray/ctor]. To return an ndarray with a different[data type][@stdlib/ndarray/dtypes], specify the`dtype` option.
117
117
@@ -316,7 +316,7 @@ See [LICENSE][stdlib-license].
Copy file name to clipboardExpand all lines: docs/types/index.d.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ interface BaseOptions {
78
78
*
79
79
* ## Notes
80
80
*
81
-
* - By default, the function iterates over elements according to the layout order of the provided ndarray. Accordingly, for row-major input ndarrays, the last dimension indices increment fastest. For column-major input ndarrays, the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanor, regardless of the input ndarray's layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input ndarray may, in some circumstances, result in performance degradation due to cache misses.
81
+
* - By default, the function iterates over elements according to the layout order of the provided ndarray. Accordingly, for row-major input ndarrays, the last dimension indices increment fastest. For column-major input ndarrays, the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanner, regardless of the input ndarray's layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input ndarray may, in some circumstances, result in performance degradation due to cache misses.
82
82
*/
83
83
order?:Order;
84
84
}
@@ -92,7 +92,7 @@ interface OrderOptions {
92
92
*
93
93
* ## Notes
94
94
*
95
-
* - By default, the function iterates over elements according to the layout order of the provided ndarray. Accordingly, for row-major input ndarrays, the last dimension indices increment fastest. For column-major input ndarrays, the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanor, regardless of the input ndarray's layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input ndarray may, in some circumstances, result in performance degradation due to cache misses.
95
+
* - By default, the function iterates over elements according to the layout order of the provided ndarray. Accordingly, for row-major input ndarrays, the last dimension indices increment fastest. For column-major input ndarrays, the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specificmanner, regardless of the input ndarray's layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input ndarray may, in some circumstances, result in performance degradation due to cache misses.