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
* Returns the first index of an element along an ndarray dimension which passes a test implemented by a predicate function.
114
+
*
115
+
* ## Notes
116
+
*
117
+
* - If no element along an ndarray dimension passes a test implemented by the predicate function, the corresponding element in the returned ndarray is `-1`.
114
118
*
115
119
* @param x - input ndarray
116
120
* @param clbk - predicate function
@@ -137,6 +141,10 @@ interface FindIndex {
137
141
/**
138
142
* Returns the first index of an element along an ndarray dimension which passes a test implemented by a predicate function.
139
143
*
144
+
* ## Notes
145
+
*
146
+
* - If no element along an ndarray dimension passes a test implemented by the predicate function, the corresponding element in the returned ndarray is `-1`.
147
+
*
140
148
* @param x - input ndarray
141
149
* @param options - function options
142
150
* @param clbk - predicate function
@@ -163,6 +171,10 @@ interface FindIndex {
163
171
/**
164
172
* Returns the first index of an element along an ndarray dimension which passes a test implemented by a predicate function and assigns results to a provided output ndarray.
165
173
*
174
+
* ## Notes
175
+
*
176
+
* - If no element along an ndarray dimension passes a test implemented by the predicate function, the corresponding element in the returned ndarray is `-1`.
177
+
*
166
178
* @param x - input ndarray
167
179
* @param out - output ndarray
168
180
* @param clbk - predicate function
@@ -194,6 +206,10 @@ interface FindIndex {
194
206
/**
195
207
* Returns the first index of an element along an ndarray dimension which passes a test implemented by a predicate function and assigns results to a provided output ndarray.
196
208
*
209
+
* ## Notes
210
+
*
211
+
* - If no element along an ndarray dimension passes a test implemented by the predicate function, the corresponding element in the returned ndarray is `-1`.
212
+
*
197
213
* @param x - input ndarray
198
214
* @param out - output ndarray
199
215
* @param options - function options
@@ -227,6 +243,10 @@ interface FindIndex {
227
243
/**
228
244
* Returns the first index of an element along an ndarray dimension which passes a test implemented by a predicate function and assigns results to a provided output ndarray.
229
245
*
246
+
* ## Notes
247
+
*
248
+
* - If no element along an ndarray dimension passes a test implemented by the predicate function, the corresponding element in the returned ndarray is `-1`.
0 commit comments