File tree 9 files changed +10
-10
lines changed
lib/node_modules/@stdlib/ndarray/base/count-falsy 9 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ var x = {
67
67
' order' : ' row-major'
68
68
};
69
69
70
- // Test elements :
70
+ // Perform operation :
71
71
var out = countFalsy ( [ x ] );
72
72
// returns 1
73
73
```
@@ -2197,7 +2197,7 @@ int main( void ) {
2197
2197
// Define an array containing the ndarrays:
2198
2198
struct ndarray *arrays[] = { x, y };
2199
2199
2200
- // Test elements :
2200
+ // Perform operation :
2201
2201
int8_t status = stdlib_ndarray_count_falsy_b_i( arrays );
2202
2202
if ( status != 0 ) {
2203
2203
fprintf( stderr, "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ int main( void ) {
92
92
// Define an array containing the ndarrays:
93
93
struct ndarray * arrays [] = { x , y };
94
94
95
- // Test elements :
95
+ // Perform operation :
96
96
int8_t status = stdlib_ndarray_count_falsy_b_i ( arrays , NULL );
97
97
if ( status != 0 ) {
98
98
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ int main( void ) {
105
105
// Define an array containing the ndarrays:
106
106
struct ndarray * arrays [] = { x , y };
107
107
108
- // Test elements :
108
+ // Perform operation :
109
109
int8_t status = stdlib_ndarray_count_falsy_c_i ( arrays , NULL );
110
110
if ( status != 0 ) {
111
111
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
95
95
// Define an array containing the ndarrays:
96
96
struct ndarray * arrays [] = { x , y };
97
97
98
- // Test elements :
98
+ // Perform operation :
99
99
int8_t status = stdlib_ndarray_count_falsy_d_i ( arrays , NULL );
100
100
if ( status != 0 ) {
101
101
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
95
95
// Define an array containing the ndarrays:
96
96
struct ndarray * arrays [] = { x , y };
97
97
98
- // Test elements :
98
+ // Perform operation :
99
99
int8_t status = stdlib_ndarray_count_falsy_f_i ( arrays , NULL );
100
100
if ( status != 0 ) {
101
101
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
95
95
// Define an array containing the ndarrays:
96
96
struct ndarray * arrays [] = { x , y };
97
97
98
- // Test elements :
98
+ // Perform operation :
99
99
int8_t status = stdlib_ndarray_count_falsy_i_i ( arrays , NULL );
100
100
if ( status != 0 ) {
101
101
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
95
95
// Define an array containing the ndarrays:
96
96
struct ndarray * arrays [] = { x , y };
97
97
98
- // Test elements :
98
+ // Perform operation :
99
99
int8_t status = stdlib_ndarray_count_falsy_s_i ( arrays , NULL );
100
100
if ( status != 0 ) {
101
101
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
95
95
// Define an array containing the ndarrays:
96
96
struct ndarray * arrays [] = { x , y };
97
97
98
- // Test elements :
98
+ // Perform operation :
99
99
int8_t status = stdlib_ndarray_count_falsy_u_i ( arrays , NULL );
100
100
if ( status != 0 ) {
101
101
fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ int main( void ) {
105
105
// Define an array containing the ndarrays:
106
106
struct ndarray * arrays [] = { x , y };
107
107
108
- // Test elements :
108
+ // Perform operation :
109
109
int8_t status = stdlib_ndarray_count_falsy_z_i ( arrays , NULL );
110
110
if ( status != 0 ) {
111
111
fprintf ( stderr , "Error during computation.\n" );
You can’t perform that action at this time.
0 commit comments