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
-[`fdfdf13`](https://github.com/stdlib-js/stdlib/commit/fdfdf139a4f787dd67d5cdcf94130bf6469c92a2) - **docs:** fix example to ensure valid type promotion _(by Athan Reines)_
713
716
-[`f738a37`](https://github.com/stdlib-js/stdlib/commit/f738a37c1cc32a740c7ecc4cbc7982eca26f67d2) - **feat:** add `ternaryBlockSize` to namespace _(by Athan Reines)_
-**order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
134
-
135
-
The callback function is provided the following arguments:
136
-
137
-
-**value**: current array element.
138
-
-**indices**: current array element indices.
139
-
-**arr**: the input ndarray.
87
+
var bool = ( out === x );
88
+
// returns true
89
+
```
140
90
141
91
</section>
142
92
@@ -146,7 +96,23 @@ The callback function is provided the following arguments:
146
96
147
97
## Notes
148
98
99
+
- A provided ndarray should be an object with the following properties:
100
+
101
+
-**dtype**: data type.
102
+
-**data**: data buffer.
103
+
-**shape**: dimensions.
104
+
-**strides**: stride lengths.
105
+
-**offset**: index offset.
106
+
-**order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
107
+
108
+
- The callback function is provided the following arguments:
109
+
110
+
-**value**: current array element.
111
+
-**indices**: current array element indices.
112
+
-**arr**: the input ndarray.
113
+
149
114
- The function **mutates** the input ndarray.
115
+
150
116
- The function assumes that each element in the underlying input ndarray data buffer has one, and only one, corresponding element in input ndarray view (i.e., a provided ndarray is not a broadcasted ndarray view).
0 commit comments