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
@@ -79,7 +79,7 @@ tape( 'the function throws an error if provided a first argument having an unrec
79
79
}
80
80
});
81
81
82
-
tape('the function throws an error if the second argument is not a function when options are not provided',functiontest(t){
82
+
tape('the function throws an error if the second argument is not a function',functiontest(t){
83
83
varvalues;
84
84
varx;
85
85
vari;
@@ -108,7 +108,7 @@ tape( 'the function throws an error if the second argument is not a function whe
108
108
}
109
109
});
110
110
111
-
tape('the function throws an error if third argument is not a function when options are provided',functiontest(t){
111
+
tape('the function throws an error if third argument is not a function (options)',functiontest(t){
112
112
varvalues;
113
113
varopts;
114
114
varx;
@@ -174,7 +174,7 @@ tape( 'the function throws an error if provided an options argument which is not
174
174
}
175
175
});
176
176
177
-
tape('the function throws an error if provided an options argument which does not have a `dtype` property',functiontest(t){
177
+
tape('the function throws an error if the provided options argument does not have a `dtype` property',functiontest(t){
178
178
varvalues;
179
179
varx;
180
180
vari;
@@ -208,7 +208,7 @@ tape( 'the function throws an error if provided an options argument which does n
208
208
}
209
209
});
210
210
211
-
tape('the function applies a callback to each indexed element in an input 3-dimensional ndarray and returns an output 3-dimensional ndarray with mapped values (row-major, contiguous)',functiontest(t){
211
+
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (row-major, contiguous)',functiontest(t){
212
212
varexpected;
213
213
varord;
214
214
varsh;
@@ -243,7 +243,42 @@ tape( 'the function applies a callback to each indexed element in an input 3-dim
243
243
}
244
244
});
245
245
246
-
tape('the function applies a callback to each indexed element in an input 3-dimensional ndarray and returns an output 3-dimensional ndarray with mapped values, using the provided options (row-major, contiguous)',functiontest(t){
246
+
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (column-major, contiguous)',functiontest(t){
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (row-major, contiguous, options)',functiontest(t){
247
282
varexpected;
248
283
varopts;
249
284
varord;
@@ -281,7 +316,7 @@ tape( 'the function applies a callback to each indexed element in an input 3-dim
281
316
}
282
317
});
283
318
284
-
tape('the function applies a callback to each indexed element in an input 3-dimensional ndarray and returns an output 3-dimensional ndarray with mapped values, using the provided options (row-major, singleton dimensions, accessors)',functiontest(t){
319
+
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (column-major, contiguous, options)',functiontest(t){
285
320
varexpected;
286
321
varopts;
287
322
varord;
@@ -292,35 +327,175 @@ tape( 'the function applies a callback to each indexed element in an input 3-dim
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (row-major, non-contiguous, large arrays)',functiontest(t){
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (row-major, non-contiguous, large arrays, options)',functiontest(t){
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (column-major, non-contiguous, large arrays)',functiontest(t){
tape('the function applies a callback to each indexed element in an input ndarray and returns an output ndarray with mapped values (column-major, non-contiguous, large arrays, options)',functiontest(t){
0 commit comments