File tree Expand file tree Collapse file tree 8 files changed +16
-0
lines changed
lib/node_modules/@stdlib/ndarray/base/assert
is-complex-floating-point-data-type/test
is-floating-point-data-type/test
is-integral-data-type/test
is-numeric-data-type/test
is-real-floating-point-data-type/test
is-signed-integer-data-type/test
is-unsigned-integer-data-type/test Expand file tree Collapse file tree 8 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ tape( 'the function returns `false` if not provided a supported ndarray complex-
54
54
var i ;
55
55
56
56
values = [
57
+ // Supported dtypes:
57
58
'float32' ,
58
59
'float64' ,
59
60
'binary' ,
@@ -66,6 +67,7 @@ tape( 'the function returns `false` if not provided a supported ndarray complex-
66
67
'int8' ,
67
68
'generic' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ tape( 'the function returns `false` if not provided a supported ndarray floating
56
56
var i ;
57
57
58
58
values = [
59
+ // Supported types:
59
60
'binary' ,
60
61
'uint16' ,
61
62
'uint32' ,
@@ -66,6 +67,7 @@ tape( 'the function returns `false` if not provided a supported ndarray floating
66
67
'int8' ,
67
68
'generic' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -59,13 +59,15 @@ tape( 'the function returns `false` if not provided a supported ndarray integral
59
59
var i ;
60
60
61
61
values = [
62
+ // Supported dtypes:
62
63
'binary' ,
63
64
'complex64' ,
64
65
'complex128' ,
65
66
'float32' ,
66
67
'float64' ,
67
68
'generic' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -63,9 +63,11 @@ tape( 'the function returns `false` if not provided a supported ndarray numeric
63
63
var i ;
64
64
65
65
values = [
66
+ // Supported dtypes:
66
67
'binary' ,
67
68
'generic' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -61,11 +61,13 @@ tape( 'the function returns `false` if not provided a supported ndarray real-val
61
61
var i ;
62
62
63
63
values = [
64
+ // Supported dtypes:
64
65
'binary' ,
65
66
'generic' ,
66
67
'complex128' ,
67
68
'complex64' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ tape( 'the function returns `false` if not provided a supported ndarray real-val
54
54
var i ;
55
55
56
56
values = [
57
+ // Supported dtypes:
57
58
'complex64' ,
58
59
'complex128' ,
59
60
'binary' ,
@@ -66,6 +67,7 @@ tape( 'the function returns `false` if not provided a supported ndarray real-val
66
67
'int8' ,
67
68
'generic' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ tape( 'the function returns `false` if not provided a supported ndarray signed i
55
55
var i ;
56
56
57
57
values = [
58
+ // Supported dtypes:
58
59
'binary' ,
59
60
'complex64' ,
60
61
'complex128' ,
@@ -66,6 +67,7 @@ tape( 'the function returns `false` if not provided a supported ndarray signed i
66
67
'uint8' ,
67
68
'uint8c' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ tape( 'the function returns `false` if not provided a supported ndarray unsigned
56
56
var i ;
57
57
58
58
values = [
59
+ // Supported dtypes:
59
60
'binary' ,
60
61
'complex64' ,
61
62
'complex128' ,
@@ -66,6 +67,7 @@ tape( 'the function returns `false` if not provided a supported ndarray unsigned
66
67
'int32' ,
67
68
'int8' ,
68
69
70
+ // Unsupported dtypes:
69
71
'float' ,
70
72
'int' ,
71
73
'bin' ,
You can’t perform that action at this time.
0 commit comments