File tree Expand file tree Collapse file tree 9 files changed +10
-10
lines changed
lib/node_modules/@stdlib/ndarray/base/count-falsy Expand file tree Collapse file tree 9 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ var x = {
6767 ' order' : ' row-major'
6868};
6969
70- // Test elements :
70+ // Perform operation :
7171var out = countFalsy ( [ x ] );
7272// returns 1
7373```
@@ -2197,7 +2197,7 @@ int main( void ) {
21972197 // Define an array containing the ndarrays:
21982198 struct ndarray *arrays[] = { x, y };
21992199
2200- // Test elements :
2200+ // Perform operation :
22012201 int8_t status = stdlib_ndarray_count_falsy_b_i( arrays );
22022202 if ( status != 0 ) {
22032203 fprintf( stderr, "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ int main( void ) {
9292 // Define an array containing the ndarrays:
9393 struct ndarray * arrays [] = { x , y };
9494
95- // Test elements :
95+ // Perform operation :
9696 int8_t status = stdlib_ndarray_count_falsy_b_i ( arrays , NULL );
9797 if ( status != 0 ) {
9898 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ int main( void ) {
105105 // Define an array containing the ndarrays:
106106 struct ndarray * arrays [] = { x , y };
107107
108- // Test elements :
108+ // Perform operation :
109109 int8_t status = stdlib_ndarray_count_falsy_c_i ( arrays , NULL );
110110 if ( status != 0 ) {
111111 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
9595 // Define an array containing the ndarrays:
9696 struct ndarray * arrays [] = { x , y };
9797
98- // Test elements :
98+ // Perform operation :
9999 int8_t status = stdlib_ndarray_count_falsy_d_i ( arrays , NULL );
100100 if ( status != 0 ) {
101101 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
9595 // Define an array containing the ndarrays:
9696 struct ndarray * arrays [] = { x , y };
9797
98- // Test elements :
98+ // Perform operation :
9999 int8_t status = stdlib_ndarray_count_falsy_f_i ( arrays , NULL );
100100 if ( status != 0 ) {
101101 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
9595 // Define an array containing the ndarrays:
9696 struct ndarray * arrays [] = { x , y };
9797
98- // Test elements :
98+ // Perform operation :
9999 int8_t status = stdlib_ndarray_count_falsy_i_i ( arrays , NULL );
100100 if ( status != 0 ) {
101101 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
9595 // Define an array containing the ndarrays:
9696 struct ndarray * arrays [] = { x , y };
9797
98- // Test elements :
98+ // Perform operation :
9999 int8_t status = stdlib_ndarray_count_falsy_s_i ( arrays , NULL );
100100 if ( status != 0 ) {
101101 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ int main( void ) {
9595 // Define an array containing the ndarrays:
9696 struct ndarray * arrays [] = { x , y };
9797
98- // Test elements :
98+ // Perform operation :
9999 int8_t status = stdlib_ndarray_count_falsy_u_i ( arrays , NULL );
100100 if ( status != 0 ) {
101101 fprintf ( stderr , "Error during computation.\n" );
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ int main( void ) {
105105 // Define an array containing the ndarrays:
106106 struct ndarray * arrays [] = { x , y };
107107
108- // Test elements :
108+ // Perform operation :
109109 int8_t status = stdlib_ndarray_count_falsy_z_i ( arrays , NULL );
110110 if ( status != 0 ) {
111111 fprintf ( stderr , "Error during computation.\n" );
You can’t perform that action at this time.
0 commit comments