diff --git a/lib/node_modules/@stdlib/strided/base/binary/README.md b/lib/node_modules/@stdlib/strided/base/binary/README.md index 5d318eb41d63..2d83716c091a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/README.md +++ b/lib/node_modules/@stdlib/strided/base/binary/README.md @@ -215,6 +215,7 @@ Character codes for data types: +- **x**: `bool` (boolean). - **c**: `complex64` (single-precision floating-point complex number). - **z**: `complex128` (double-precision floating-point complex number). - **f**: `float32` (single-precision floating-point number). @@ -332,12 +333,12 @@ int64_t strides[] = { 1, 1, 1 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_b( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_b( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -373,12 +374,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -415,12 +416,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -457,12 +458,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -498,12 +499,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -539,12 +540,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -580,12 +581,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -621,12 +622,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -662,12 +663,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -703,12 +704,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -744,12 +745,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -785,12 +786,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_k( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -826,12 +827,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -867,12 +868,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_t( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_t( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -908,12 +909,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_t_as_tt_t( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_t_as_tt_t( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -949,12 +950,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_u( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -990,12 +991,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1031,12 +1032,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static uint8_t add( uint8_t x, uint8_t y ) { +static uint8_t fcn( uint8_t x, uint8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bb_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1073,12 +1074,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1115,12 +1116,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bc_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1157,12 +1158,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1199,12 +1200,12 @@ int64_t strides[] = { 1, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1240,12 +1241,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bd_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1282,12 +1283,12 @@ int64_t strides[] = { 1, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1324,12 +1325,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bf_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1366,12 +1367,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bf_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1407,12 +1408,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bf_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1448,12 +1449,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bf_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1489,12 +1490,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_bf_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1531,12 +1532,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1572,12 +1573,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bi_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bi_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1613,12 +1614,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bi_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bi_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1655,12 +1656,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bi_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1697,12 +1698,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bk_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1739,12 +1740,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bk_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1780,12 +1781,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1821,12 +1822,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bk_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1862,12 +1863,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_bk_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1903,12 +1904,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bk_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1944,12 +1945,12 @@ int64_t strides[] = { 1, 2, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bk_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -1986,12 +1987,12 @@ int64_t strides[] = { 1, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2028,12 +2029,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bs_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2070,12 +2071,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bs_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2111,12 +2112,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bs_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2152,12 +2153,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bs_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2193,12 +2194,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_bs_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2234,12 +2235,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bs_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2275,12 +2276,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bs_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2317,12 +2318,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bs_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2359,12 +2360,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_bt_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2401,12 +2402,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bt_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2442,12 +2443,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2483,12 +2484,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2524,12 +2525,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2565,12 +2566,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2606,12 +2607,12 @@ int64_t strides[] = { 1, 2, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_t_as_tt_t( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_t_as_tt_t( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2647,12 +2648,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bt_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2689,12 +2690,12 @@ int64_t strides[] = { 1, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bt_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2730,12 +2731,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_bu_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_bu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2771,12 +2772,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_bu_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_bu_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2813,12 +2814,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2855,12 +2856,12 @@ int64_t strides[] = { 1, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_bz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_bz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2897,12 +2898,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_cb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_cb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2939,12 +2940,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -2981,12 +2982,12 @@ int64_t strides[] = { 8, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3023,12 +3024,12 @@ int64_t strides[] = { 8, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3065,12 +3066,12 @@ int64_t strides[] = { 8, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3107,12 +3108,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_cc_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cc_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3149,12 +3150,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3191,12 +3192,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3233,12 +3234,12 @@ int64_t strides[] = { 8, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_cf_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_cf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3275,12 +3276,12 @@ int64_t strides[] = { 8, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cf_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3317,12 +3318,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3359,12 +3360,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ci_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ci_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3401,12 +3402,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ck_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ck_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3443,12 +3444,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ck_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ck_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3485,12 +3486,12 @@ int64_t strides[] = { 8, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ck_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ck_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3527,12 +3528,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_cs_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_cs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3569,12 +3570,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cs_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3611,12 +3612,12 @@ int64_t strides[] = { 8, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cs_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3653,12 +3654,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ct_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ct_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3695,12 +3696,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ct_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ct_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3737,12 +3738,12 @@ int64_t strides[] = { 8, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ct_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ct_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3779,12 +3780,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3821,12 +3822,12 @@ int64_t strides[] = { 8, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_cz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_cz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3862,12 +3863,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_db_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_db_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3904,12 +3905,12 @@ int64_t strides[] = { 8, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_db_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_db_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3946,12 +3947,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_dc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -3987,12 +3988,12 @@ int64_t strides[] = { 8, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4028,12 +4029,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_dd_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dd_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4070,12 +4071,12 @@ int64_t strides[] = { 8, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_dd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4111,12 +4112,12 @@ int64_t strides[] = { 8, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_df_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_df_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4153,12 +4154,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_df_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_df_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4194,12 +4195,12 @@ int64_t strides[] = { 8, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_di_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_di_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4236,12 +4237,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_di_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_di_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4277,12 +4278,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_dk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_dk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4319,12 +4320,12 @@ int64_t strides[] = { 8, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_dk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4360,12 +4361,12 @@ int64_t strides[] = { 8, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ds_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ds_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4402,12 +4403,12 @@ int64_t strides[] = { 8, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ds_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ds_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4443,12 +4444,12 @@ int64_t strides[] = { 8, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_dt_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_dt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4485,12 +4486,12 @@ int64_t strides[] = { 8, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_dt_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4526,12 +4527,12 @@ int64_t strides[] = { 8, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_du_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_du_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4568,12 +4569,12 @@ int64_t strides[] = { 8, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_du_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_du_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4610,12 +4611,12 @@ int64_t strides[] = { 8, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_dz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_dz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4652,12 +4653,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_fb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4694,12 +4695,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4735,12 +4736,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fb_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4776,12 +4777,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fb_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4817,12 +4818,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_fb_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4859,12 +4860,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4901,12 +4902,12 @@ int64_t strides[] = { 4, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_fc_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_fc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4943,12 +4944,12 @@ int64_t strides[] = { 4, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -4985,12 +4986,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5026,12 +5027,12 @@ int64_t strides[] = { 4, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fd_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5068,12 +5069,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5109,12 +5110,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5151,12 +5152,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ff_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5193,12 +5194,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ff_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5234,12 +5235,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5275,12 +5276,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5316,12 +5317,12 @@ int64_t strides[] = { 4, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5357,12 +5358,12 @@ int64_t strides[] = { 4, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5398,12 +5399,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ff_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5440,12 +5441,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ff_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ff_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5481,12 +5482,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fi_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fi_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5523,12 +5524,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fi_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5565,12 +5566,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_fk_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5607,12 +5608,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fk_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5648,12 +5649,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5689,12 +5690,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fk_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5730,12 +5731,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_fk_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5772,12 +5773,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5814,12 +5815,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_fs_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5856,12 +5857,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fs_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5897,12 +5898,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fs_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5938,12 +5939,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fs_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -5979,12 +5980,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_fs_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6021,12 +6022,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fs_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6063,12 +6064,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ft_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6105,12 +6106,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ft_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6146,12 +6147,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ft_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6187,12 +6188,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ft_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6228,12 +6229,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ft_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6270,12 +6271,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ft_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ft_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6311,12 +6312,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_fu_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_fu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6353,12 +6354,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6395,12 +6396,12 @@ int64_t strides[] = { 4, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_fz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_fz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6436,12 +6437,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ib_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ib_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6477,12 +6478,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ib_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ib_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6519,12 +6520,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ib_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ib_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6561,12 +6562,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ic_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ic_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6602,12 +6603,12 @@ int64_t strides[] = { 4, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_id_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_id_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6644,12 +6645,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_id_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_id_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6685,12 +6686,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_if_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_if_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6727,12 +6728,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_if_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_if_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6768,12 +6769,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ii_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ii_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6809,12 +6810,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ii_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ii_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6850,12 +6851,12 @@ int64_t strides[] = { 4, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6891,12 +6892,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ii_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ii_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6933,12 +6934,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ii_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ii_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -6974,12 +6975,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ik_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ik_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7015,12 +7016,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ik_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ik_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7057,12 +7058,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ik_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ik_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7098,12 +7099,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_is_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_is_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7139,12 +7140,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_is_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_is_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7181,12 +7182,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_is_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_is_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7222,12 +7223,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_it_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_it_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7263,12 +7264,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_it_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_it_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7305,12 +7306,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_it_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_it_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7346,12 +7347,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_iu_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_iu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7388,12 +7389,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_iu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_iu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7430,12 +7431,12 @@ int64_t strides[] = { 4, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_iz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_iz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7472,12 +7473,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_kb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7514,12 +7515,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7555,12 +7556,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kb_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7596,12 +7597,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kb_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7637,12 +7638,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_kb_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7678,12 +7679,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kb_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7719,12 +7720,12 @@ int64_t strides[] = { 2, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kb_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7761,12 +7762,12 @@ int64_t strides[] = { 2, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7803,12 +7804,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_kc_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_kc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7845,12 +7846,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7887,12 +7888,12 @@ int64_t strides[] = { 2, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7928,12 +7929,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kd_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -7970,12 +7971,12 @@ int64_t strides[] = { 2, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8012,12 +8013,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_kf_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8054,12 +8055,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kf_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8095,12 +8096,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kf_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8136,12 +8137,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kf_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8177,12 +8178,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_kf_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8219,12 +8220,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8260,12 +8261,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ki_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ki_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8301,12 +8302,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ki_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ki_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8343,12 +8344,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ki_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ki_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8384,12 +8385,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_c( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8426,12 +8427,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_kk_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8468,12 +8469,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kk_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8509,12 +8510,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8550,12 +8551,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8591,12 +8592,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_f( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8632,12 +8633,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8673,12 +8674,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8714,12 +8715,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_i( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8755,12 +8756,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8796,12 +8797,12 @@ int64_t strides[] = { 2, 2, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8837,12 +8838,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kk_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8879,12 +8880,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8921,12 +8922,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ks_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -8963,12 +8964,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ks_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9004,12 +9005,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ks_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9045,12 +9046,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ks_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9086,12 +9087,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ks_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9127,12 +9128,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ks_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9168,12 +9169,12 @@ int64_t strides[] = { 2, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ks_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9210,12 +9211,12 @@ int64_t strides[] = { 2, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ks_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ks_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9251,12 +9252,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_kt_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_kt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9292,12 +9293,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_kt_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_kt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9334,12 +9335,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kt_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9375,12 +9376,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ku_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ku_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9417,12 +9418,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ku_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ku_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9459,12 +9460,12 @@ int64_t strides[] = { 2, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_kz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_kz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9501,12 +9502,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_sb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9543,12 +9544,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9584,12 +9585,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sb_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9625,12 +9626,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sb_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9666,12 +9667,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_sb_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9707,12 +9708,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_sb_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9748,12 +9749,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_sb_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9790,12 +9791,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9832,12 +9833,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_sc_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_sc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9874,12 +9875,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9916,12 +9917,12 @@ int64_t strides[] = { 1, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9957,12 +9958,12 @@ int64_t strides[] = { 1, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sd_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -9999,12 +10000,12 @@ int64_t strides[] = { 1, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10041,12 +10042,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_sf_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10083,12 +10084,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sf_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10124,12 +10125,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sf_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10165,12 +10166,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sf_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10206,12 +10207,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_sf_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10248,12 +10249,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10289,12 +10290,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_si_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_si_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10330,12 +10331,12 @@ int64_t strides[] = { 1, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_si_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_si_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10372,12 +10373,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_si_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_si_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10414,12 +10415,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_sk_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10456,12 +10457,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sk_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10497,12 +10498,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10538,12 +10539,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_sk_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10579,12 +10580,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_sk_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10620,12 +10621,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_sk_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10661,12 +10662,12 @@ int64_t strides[] = { 1, 2, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_sk_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10703,12 +10704,12 @@ int64_t strides[] = { 1, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10744,12 +10745,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10786,12 +10787,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_ss_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10828,12 +10829,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ss_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10869,12 +10870,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10910,12 +10911,12 @@ int64_t strides[] = { 1, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10951,12 +10952,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_f( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -10992,12 +10993,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11033,12 +11034,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11074,12 +11075,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11115,12 +11116,12 @@ int64_t strides[] = { 1, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11156,12 +11157,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_k( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11197,12 +11198,12 @@ int64_t strides[] = { 1, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static int16_t add( int16_t x, int16_t y ) { +static int16_t fcn( int16_t x, int16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_k_as_kk_k( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_k_as_kk_k( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11238,12 +11239,12 @@ int64_t strides[] = { 1, 1, 1 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_s( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_s( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11279,12 +11280,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static int8_t add( int8_t x, int8_t y ) { +static int8_t fcn( int8_t x, int8_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ss_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11321,12 +11322,12 @@ int64_t strides[] = { 1, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ss_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ss_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11362,12 +11363,12 @@ int64_t strides[] = { 1, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_st_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_st_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11403,12 +11404,12 @@ int64_t strides[] = { 1, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_st_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_st_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11445,12 +11446,12 @@ int64_t strides[] = { 1, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_st_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_st_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11486,12 +11487,12 @@ int64_t strides[] = { 1, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_su_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_su_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11528,12 +11529,12 @@ int64_t strides[] = { 1, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_su_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_su_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11570,12 +11571,12 @@ int64_t strides[] = { 1, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_sz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_sz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11612,12 +11613,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_tb_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11654,12 +11655,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tb_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11695,12 +11696,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11736,12 +11737,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11777,12 +11778,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11818,12 +11819,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11859,12 +11860,12 @@ int64_t strides[] = { 2, 1, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_t_as_tt_t( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_t_as_tt_t( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11900,12 +11901,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tb_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11942,12 +11943,12 @@ int64_t strides[] = { 2, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -11984,12 +11985,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_tc_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_tc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12026,12 +12027,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tc_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12068,12 +12069,12 @@ int64_t strides[] = { 2, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12109,12 +12110,12 @@ int64_t strides[] = { 2, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_td_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_td_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12151,12 +12152,12 @@ int64_t strides[] = { 2, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_td_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_td_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12193,12 +12194,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_tf_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12235,12 +12236,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tf_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12276,12 +12277,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tf_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12317,12 +12318,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tf_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12358,12 +12359,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_tf_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12400,12 +12401,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12441,12 +12442,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ti_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ti_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12482,12 +12483,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ti_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ti_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12524,12 +12525,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ti_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ti_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12565,12 +12566,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12606,12 +12607,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tk_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_tk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12648,12 +12649,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12689,12 +12690,12 @@ int64_t strides[] = { 2, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ts_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ts_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12730,12 +12731,12 @@ int64_t strides[] = { 2, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ts_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_ts_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12772,12 +12773,12 @@ int64_t strides[] = { 2, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ts_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ts_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12813,12 +12814,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_c( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12855,12 +12856,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { // ... } // Apply the callback: -stdlib_strided_tt_c_as_cc_c( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_c_as_cc_c( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12897,12 +12898,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tt_c_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_c_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12938,12 +12939,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -12979,12 +12980,12 @@ int64_t strides[] = { 2, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13020,12 +13021,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_f( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13061,12 +13062,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_f_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_f_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13102,12 +13103,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static float add( float x, float y ) { +static float fcn( float x, float y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_f_as_ff_f( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_f_as_ff_f( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13143,12 +13144,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_i( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13184,12 +13185,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static int32_t add( int32_t x, int32_t y ) { +static int32_t fcn( int32_t x, int32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_i_as_ii_i( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13225,12 +13226,12 @@ int64_t strides[] = { 2, 2, 2 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_t( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_t( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13266,12 +13267,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_u( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13307,12 +13308,12 @@ int64_t strides[] = { 2, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13348,12 +13349,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static uint16_t add( uint16_t x, uint16_t y ) { +static uint16_t fcn( uint16_t x, uint16_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tt_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13390,12 +13391,12 @@ int64_t strides[] = { 2, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tt_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13431,12 +13432,12 @@ int64_t strides[] = { 2, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_tu_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_tu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13472,12 +13473,12 @@ int64_t strides[] = { 2, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_tu_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_tu_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13514,12 +13515,12 @@ int64_t strides[] = { 2, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13556,12 +13557,12 @@ int64_t strides[] = { 2, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_tz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_tz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13597,12 +13598,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ub_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ub_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13638,12 +13639,12 @@ int64_t strides[] = { 4, 1, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ub_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_ub_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13680,12 +13681,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ub_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ub_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13722,12 +13723,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_uc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13763,12 +13764,12 @@ int64_t strides[] = { 4, 8, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ud_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ud_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13805,12 +13806,12 @@ int64_t strides[] = { 4, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ud_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ud_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13846,12 +13847,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_uf_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_uf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13888,12 +13889,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_uf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13929,12 +13930,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ui_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ui_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -13971,12 +13972,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ui_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ui_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14012,12 +14013,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_uk_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_uk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14054,12 +14055,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_uk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14095,12 +14096,12 @@ int64_t strides[] = { 4, 1, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_us_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_us_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14137,12 +14138,12 @@ int64_t strides[] = { 4, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_us_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_us_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14178,12 +14179,12 @@ int64_t strides[] = { 4, 2, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_ut_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_ut_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14219,12 +14220,12 @@ int64_t strides[] = { 4, 2, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_ut_u_as_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_ut_u_as_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14261,12 +14262,12 @@ int64_t strides[] = { 4, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_ut_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_ut_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14302,12 +14303,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_uu_d( arrays, shape, strides, (void *)add ); +stdlib_strided_uu_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14343,12 +14344,12 @@ int64_t strides[] = { 4, 4, 8 }; int64_t shape[] = { 3 }; // Define a callback: -static double add( double x, double y ) { +static double fcn( double x, double y ) { return x + y; } // Apply the callback: -stdlib_strided_uu_d_as_dd_d( arrays, shape, strides, (void *)add ); +stdlib_strided_uu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14384,12 +14385,12 @@ int64_t strides[] = { 4, 4, 4 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_uu_u( arrays, shape, strides, (void *)add ); +stdlib_strided_uu_u( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14425,12 +14426,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static uint32_t add( uint32_t x, uint32_t y ) { +static uint32_t fcn( uint32_t x, uint32_t y ) { return x + y; } // Apply the callback: -stdlib_strided_uu_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uu_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14467,12 +14468,12 @@ int64_t strides[] = { 4, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_uu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14509,12 +14510,12 @@ int64_t strides[] = { 4, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_uz_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_uz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14528,6 +14529,48 @@ The function accepts the following arguments: void stdlib_strided_uz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` +#### stdlib_strided_xx_x( \*arrays\[], \*shape, \*strides, \*fcn ) + +Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. + +```c +#include +#include + +// Create underlying byte arrays: +uint8_t x[] = { 0, 0, 0 }; +uint8_t y[] = { 0, 0, 0 }; +uint8_t out[] = { 0, 0, 0 }; + +// Define a pointer to an array containing pointers to strided arrays: +uint8_t *arrays[] = { x, y, out }; + +// Define the strides: +int64_t strides[] = { 1, 1, 1 }; + +// Define the number of elements over which to iterate: +int64_t shape[] = { 3 }; + +// Define a callback: +static bool fcn( bool x, bool y ) { + return x && y; +} + +// Apply the callback: +stdlib_strided_xx_x( arrays, shape, strides, (void *)fcn ); +``` + +The function accepts the following arguments: + +- **arrays**: `[inout] uint8_t**` array whose first two elements are pointers to strided input arrays and whose last element is a pointer to a strided output array. +- **shape**: `[in] int64_t*` array whose only element is the number of elements over which to iterate. +- **strides**: `[in] int64_t*` array containing strides (in bytes) for each strided array. +- **fcn**: `[in] void*` a `bool (*f)(bool, bool)` function to apply provided as a `void` pointer. + +```c +void stdlib_strided_xx_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); +``` + #### stdlib_strided_zb_z_as_zz_z( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -14551,12 +14594,12 @@ int64_t strides[] = { 16, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zb_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14593,12 +14636,12 @@ int64_t strides[] = { 16, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zc_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14635,12 +14678,12 @@ int64_t strides[] = { 16, 8, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zd_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14677,12 +14720,12 @@ int64_t strides[] = { 16, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zf_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14719,12 +14762,12 @@ int64_t strides[] = { 16, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zi_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14761,12 +14804,12 @@ int64_t strides[] = { 16, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zk_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14803,12 +14846,12 @@ int64_t strides[] = { 16, 1, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zs_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14845,12 +14888,12 @@ int64_t strides[] = { 16, 2, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zt_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14887,12 +14930,12 @@ int64_t strides[] = { 16, 4, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zu_z_as_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: @@ -14929,12 +14972,12 @@ int64_t strides[] = { 16, 16, 16 }; int64_t shape[] = { 3 }; // Define a callback: -static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { // ... } // Apply the callback: -stdlib_strided_zz_z( arrays, shape, strides, (void *)add ); +stdlib_strided_zz_z( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary.h index e9c6b53f59e8..8757577e0d04 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary.h @@ -379,6 +379,8 @@ #include "binary/uu_z_as_zz_z.h" #include "binary/uz_z_as_zz_z.h" +#include "binary/xx_x.h" + #include "binary/zb_z_as_zz_z.h" #include "binary/zc_z_as_zz_z.h" #include "binary/zd_z_as_zz_z.h" diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_b.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_b.h index 425fcad86304..6829f9eeab43 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_b.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_b.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c.h index c53c06ce7988..3fd97a908b50 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_cc_c.h index 696f5391a8fa..59d18ee4a898 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_zz_z.h index 32b2b2bd7a54..bcc22531bddb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d.h index a390459434d3..bf1c2ffb0aa2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d_as_dd_d.h index 03217024588d..cd2e98948c5f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f.h index 205b3d70b3f0..5c9821e881b6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_dd_d.h index 1e4ebadb6794..0f1c3cce56a9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_ff_f.h index ffcfcd12fd54..0583e3f5ca7d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i.h index e1dea62903f2..5941a0f56e97 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i_as_ii_i.h index 0e95eee2fd2b..98237bec92ff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k.h index 3d648aeed4cb..f6ebd27d71d8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k_as_kk_k.h index 790909ca60aa..bf541761dfd8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t.h index 48b7c2ad326d..a9b4efaed7ec 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t_as_tt_t.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t_as_tt_t.h index efa4389276e5..31334e3c4395 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t_as_tt_t.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_t_as_tt_t.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u.h index d9a33250023e..c0d6ec0443a0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u_as_uu_u.h index 74134c45b38e..1faa39d89f38 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z.h index f8366cf07c7a..ba735e70f7f2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z_as_zz_z.h index cdab80790788..6cf3eb1b6b06 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_cc_c.h index 6c1ff191f9b9..19528b8f9b71 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_zz_z.h index 1e826b4f8bac..c3f5d6f0dec5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_z_as_zz_z.h index 4d19b4aa22a2..741fe5e02a58 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_d_as_dd_d.h index 5753f8794c5d..2d0eb2ef32cd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_z_as_zz_z.h index ca056879fd38..c28be6161208 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_cc_c.h index 5a86cf4bd6b7..abd2e1fd3230 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_zz_z.h index 46311ffc9482..c2ea7ad74475 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_d_as_dd_d.h index cf495f3d9ed6..5e6ef11ac4c4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_dd_d.h index b7920c33f0e6..95a647ef662b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_ff_f.h index 2c904881b8a0..891afe12225c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_z_as_zz_z.h index 55e61e5f99b2..bac23a616d83 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_d_as_dd_d.h index 3f966732c33d..6fc0052a4e15 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_i_as_ii_i.h index 73a48ee4c501..11e3a07af844 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_z_as_zz_z.h index 1f4db6cd6b24..4c08ab34e637 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bi_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_cc_c.h index f4343b6bd8b5..c27ac8956319 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_zz_z.h index ca0c3326d7d1..251c026812b4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_d_as_dd_d.h index 8f1f6d0b98f4..e462a19e6461 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_dd_d.h index 29d2786778f6..1482f19c6d21 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_ff_f.h index 1b1aa6b3e150..6d2730c8ab82 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_i_as_ii_i.h index 639ca3f348c8..113bf9b93c32 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_k_as_kk_k.h index 8d2a4ac8f82c..93e6aadebd7f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_z_as_zz_z.h index 5bc0a2f96f37..6f31cbea6e4e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_cc_c.h index 41a596a1ecd4..7e50855142a5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_zz_z.h index 52b994f9d7db..f57f331ef6dc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_d_as_dd_d.h index ec4a0e8b06bc..8f31a860ef00 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_dd_d.h index a23e6ee3617d..91a0e40091db 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_ff_f.h index 42e466df76b6..16e25a2834b5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_i_as_ii_i.h index 0133b4bde6e7..f3ede008bbcf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_k_as_kk_k.h index d504bc78bdff..ff8c9dd21a2b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_z_as_zz_z.h index 6beac0d6e174..52f87c0736be 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bs_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_cc_c.h index 8d67a884b9fc..50e0317fe723 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_zz_z.h index 73cbd185e05c..140aa10a3669 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_d_as_dd_d.h index cc0d06dd14a3..46aa7033af9d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_dd_d.h index eb16ee8ac860..8b64a0a0f64d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_ff_f.h index ecfd28372e9a..98b995759816 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_i_as_ii_i.h index f704233090a0..10107e327054 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_t_as_tt_t.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_t_as_tt_t.h index c7aaaaaa2f17..11e08caea4bf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_t_as_tt_t.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_t_as_tt_t.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_u_as_uu_u.h index f80229bfe76d..c2b1f10f31d8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_z_as_zz_z.h index 7eeb52d72b7a..0958237dd885 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bt_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_d_as_dd_d.h index 2b8fa0bed4df..b7259f352768 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_u_as_uu_u.h index b40c5d6195c1..c3dd9c5aaf36 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_z_as_zz_z.h index 2b477bdd501f..ea1a98c27964 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bz_z_as_zz_z.h index 02b2eec87384..c103bb6f2dd5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/bz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_cc_c.h index 88e08c418464..a971161059ea 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_zz_z.h index 12a19a9382ee..4605b08befba 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_z_as_zz_z.h index f23778a3efd6..d7a1415c0d45 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c.h index 7bdd74eb7659..e6da50db2259 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c_as_zz_z.h index d62f1deb1b9e..6ae90ba2ada0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z.h index 54895b25fec7..50b7ac392805 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z_as_zz_z.h index 2213ce3174ec..55a52e73c4f8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cd_z_as_zz_z.h index aa83afcfe372..9d38bdbc53ea 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_cc_c.h index 5b8ffa020b10..6da4891c3e71 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_zz_z.h index 66c853e48905..cb3613055e90 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_z_as_zz_z.h index eca08fbc36c9..37219200f07a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ci_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ci_z_as_zz_z.h index 9f1577b4b7bc..caf3ae2b26aa 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ci_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ci_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_cc_c.h index fc6189370ca7..314ac987d206 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_zz_z.h index 435753bb0fc8..f1c0ae68c4e9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_z_as_zz_z.h index a948086866a2..d30eb737b15f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ck_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_cc_c.h index 707e15afab5c..2f36ca5d6df3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_zz_z.h index e6ca65949dfe..a55f7293037b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_z_as_zz_z.h index 1f048fd58ceb..5ef1ae1c3bbe 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cs_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_cc_c.h index 20e5032b31f7..efa7398e2dee 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_zz_z.h index f8cd3e194d4b..3c2591edd2c1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_z_as_zz_z.h index 7916da06ec0a..85860150adfd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ct_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cu_z_as_zz_z.h index 4765f166a0f6..751d69b03bf7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cz_z_as_zz_z.h index 512689249b76..9ab2802113de 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/cz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_d_as_dd_d.h index 132ba70f940d..b550a65ee60e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_z_as_zz_z.h index e67b7be0c750..6eed42541090 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/db_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dc_z_as_zz_z.h index ba032bce2ecf..c8bccd14742d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_d.h index b5250a6caec2..103edb829099 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z.h index fe25d85a98e3..64bd3547e37d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z_as_zz_z.h index 252d4bc52eba..fae286b03fd7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_d_as_dd_d.h index 79c6df4e0f63..7c1558e9cf06 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_z_as_zz_z.h index 5805ace66dc4..32d4b21adb0e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/df_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_d_as_dd_d.h index 722d9702cafc..50f8d2b20d4e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_z_as_zz_z.h index 907e3991c36a..9df4f6c494a7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/di_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_d_as_dd_d.h index e0442e586c47..09680b636ef5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_z_as_zz_z.h index 8a440015531d..36aa78765798 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_d_as_dd_d.h index 6523a8a9afc4..cf0b90ebec9a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_z_as_zz_z.h index b8324f948756..5babf965864c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ds_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_d_as_dd_d.h index 85842056baea..a007a35ec6f7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_z_as_zz_z.h index a88f2fd6ccd0..a27a06f6b4b7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dt_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_d_as_dd_d.h index b7c809ba18bc..69a40f24d2ff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_z_as_zz_z.h index b45cc7c876c0..a93c246e745c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/du_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dz_z_as_zz_z.h index e94e673c6e4a..c52be7b0dbd0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/dz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_cc_c.h index 98b00c448821..3358e9b47153 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_zz_z.h index f3eae83b5f07..e1617b098986 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_d_as_dd_d.h index 4cf583f5e1ff..7677a8b750b3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_dd_d.h index f3935e2201d4..4fd5f73fb2ea 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_ff_f.h index 5c4ecafdb59f..080e2ab2eaef 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_z_as_zz_z.h index ef3341930207..c6ee050f54be 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_cc_c.h index 9b1a4d9f961c..3919c58254bc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_zz_z.h index cd43fde66016..b745ec39a5e2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_z_as_zz_z.h index 3f3b58899382..852cde121115 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_d_as_dd_d.h index 7098433fcd89..fcc3b9adbd4d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_z_as_zz_z.h index e6fa8fb8d763..3353090d149d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c.h index 6acc79fcee94..c06b407e3027 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_cc_c.h index 7b3273c1d474..756015afb1d7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_zz_z.h index 7a084b9a5502..01a12d916a9e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d.h index f0b105c3b2d2..3679ff75aaac 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d_as_dd_d.h index 03d98444d86a..d1e597e3bcff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f.h index ce72f4ce34ef..950ac54f2472 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f_as_dd_d.h index f05f08f2536e..50fa4a038fbf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z.h index 8deaff280735..506cbd75220f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z_as_zz_z.h index 1dad1ccbae16..684709311191 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ff_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_d_as_dd_d.h index 64e456e84a81..fb2f8fe3a7a5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_z_as_zz_z.h index 2c82ddc58e2d..ebf3444f9116 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fi_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_cc_c.h index 2fa0ad798b44..f84a768a2f16 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_zz_z.h index ffaf9c6f4b00..00a95e1eae05 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_d_as_dd_d.h index 48bdf5e1a997..39f321929c1c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_dd_d.h index 86d209fdf2e6..084cdeff3bf4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_ff_f.h index e3f02abf9511..9030f0cf2068 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_z_as_zz_z.h index d41df2c175b4..bcbc01086bca 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_cc_c.h index 925389692fc1..a6c503714af7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_zz_z.h index d84c3689f22d..2803b8889533 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_d_as_dd_d.h index df2f90772850..57899fb3ad3a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_dd_d.h index 8369e89ce810..014f9b222183 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_ff_f.h index c4b20541531a..094f2d31e1af 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_z_as_zz_z.h index 24f7387351a2..bc417d65c94c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fs_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_cc_c.h index 201111bc463e..b44fad799a47 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_zz_z.h index b5629ad6cd20..c545eb989b4c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_d_as_dd_d.h index cabed0c70b92..a866da6ffb73 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_dd_d.h index f7ff2b188a7b..7622ec4c394a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_ff_f.h index 6728be530e1d..a728dce08bbd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_z_as_zz_z.h index 691144a512d1..232e0e40abd5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ft_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_d_as_dd_d.h index c0bad426900d..9bd4a92612d7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_z_as_zz_z.h index 6398fc74c015..2d30c2c8ab13 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fz_z_as_zz_z.h index 69274ef602de..a14e5badd7b5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/fz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_d_as_dd_d.h index 6885c8529bf3..e9a211185512 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_i_as_ii_i.h index d00eb77457d7..632c17e80190 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_z_as_zz_z.h index 74ec2a5de310..0b96b8f66c84 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ib_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ic_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ic_z_as_zz_z.h index 8b6354a09877..0dec2aaad3c9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ic_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ic_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_d_as_dd_d.h index b0ec540dc36b..2de2c746ed4b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_z_as_zz_z.h index 4f176d96c65b..6cb546784845 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/id_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_d_as_dd_d.h index 5514ebb71db8..787462c1236f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_z_as_zz_z.h index 47459a271d88..1d1802176874 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/if_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d.h index dfa2f01f0ce7..bfbf4f91ef49 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d_as_dd_d.h index 38b12dcfd285..a93c3b32ea01 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_i.h index eaa463eb08b3..56d50dff39d3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z.h index d9e05a4b48d7..cfdb890960bf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z_as_zz_z.h index b656dc043663..743025cd4090 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ii_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_d_as_dd_d.h index bf8e5d6a55e0..66c1396d1aa3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_i_as_ii_i.h index a5dc4e47e28f..928bc456843a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_z_as_zz_z.h index f21161e9f2ac..1b53a6fc5fda 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ik_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_d_as_dd_d.h index 7d245e76de03..db83288bdf1f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_i_as_ii_i.h index 14ffaf8ad835..f45f01a311a9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_z_as_zz_z.h index f0db09ab6070..b4d23d8027cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/is_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_d_as_dd_d.h index 56392c6d5e37..a23cb2663f2f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_i_as_ii_i.h index bad79dafe134..03cc668dd671 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_z_as_zz_z.h index 9638db2c2881..206783d3356c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/it_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_d_as_dd_d.h index 47a5d542fcc2..9a82ecc2d70a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_z_as_zz_z.h index 8450e86f5c9c..0a666391b192 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iz_z_as_zz_z.h index 38da63e06f58..fbd8df91370e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/iz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_cc_c.h index daf95a430605..468ae05d6e37 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_zz_z.h index eb1fbc4cf3fd..ad37c4a32180 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_d_as_dd_d.h index 82f027b798ae..12dc65442534 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_dd_d.h index 127dea8fdcb0..5ef1424f9f70 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_ff_f.h index f5303034847f..91f52b60cebb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_i_as_ii_i.h index d16b428fb72e..1321c99947df 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_k_as_kk_k.h index eb6fb8d7faea..ea9807ef09d8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_z_as_zz_z.h index d08a1200563a..a7388b7ad528 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_cc_c.h index 275ec7035e24..4e40ef2cf638 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_zz_z.h index 056569a2d548..d0283e746a42 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_z_as_zz_z.h index beb784b396a8..9c0065ee3eca 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_d_as_dd_d.h index 5487bd9ce2d4..a2d8ac079c90 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_z_as_zz_z.h index fa83ee0876fd..a0e97a17bfcd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_cc_c.h index 91c3f14c5a2d..cacab43be6c0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_zz_z.h index dc3e2f2463ed..99c34ee27eb0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_d_as_dd_d.h index 88b1a31ac006..100aa914879b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_dd_d.h index 80b3955a9909..ac0237008efa 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_ff_f.h index 6bd7da4b4d97..9163c72d07f4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_z_as_zz_z.h index 873c5f98e835..2b6c7fee88eb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_d_as_dd_d.h index 6a6800196ec1..31152ba82986 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_i_as_ii_i.h index b1b7563cb14e..30c9f1f93d44 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_z_as_zz_z.h index d777f0bde20c..c2c61b2502c6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ki_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c.h index 6827f6fb1074..f6d33efc3431 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_cc_c.h index 45cbca168caf..1d2e5ac05b17 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_zz_z.h index 37f987a416fc..638d8b3ee29b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d.h index f8846ccc39e3..56fc405d4424 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d_as_dd_d.h index 80421773c55a..b313f439f0d8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f.h index 4442d4438d33..a046a2b251bc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_dd_d.h index 6906825550f2..e2a039aaf974 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_ff_f.h index 0159eef1cbb8..959705551e5f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i.h index 549832b806e9..1ee7b846b1fd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i_as_ii_i.h index 6b1ae71d749e..9e1337523edc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_k.h index 86dc9aec8d6c..04cf78c8782c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z.h index 01469728b2d2..9b0ed076a04e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z_as_zz_z.h index a6845e110ce5..f3b4510eb217 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_cc_c.h index a4cae0553f9b..708d2d0e8ac9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_zz_z.h index 758e76fb30b5..1850d7b91a5c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_d_as_dd_d.h index 119e21a7e381..bab13108feb5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_dd_d.h index d9783226a34d..8614ffa0bb0b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_ff_f.h index 581adf60c68d..8ffbe09a81ff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_i_as_ii_i.h index b200550a3bcc..5dd091eacc67 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_k_as_kk_k.h index 0d091f77314a..36353590a8fc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_z_as_zz_z.h index 15884e11cb23..0461ea249194 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ks_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_d_as_dd_d.h index 89abfcea6bce..ec573e775a40 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_i_as_ii_i.h index a9d3f379e6c8..8c2de0bd915b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_z_as_zz_z.h index 3c9949e3538c..47a18b6e4155 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kt_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_d_as_dd_d.h index c0977ff9aee8..94024e1ceffd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_z_as_zz_z.h index d9b31411c15e..fee79749260a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ku_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kz_z_as_zz_z.h index 808110f0e550..d176f90dee53 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/kz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_cc_c.h index c2d08ddaeed6..06da716df97d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_zz_z.h index 42231d24f99e..2bc6f64f3a63 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_d_as_dd_d.h index 0e47363e83f0..57bda642d547 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_dd_d.h index 33d83fae109f..b5f398ca6822 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_ff_f.h index cadb4070314f..321505f1744e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_i_as_ii_i.h index b029ec38c0d2..c16e6e172897 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_k_as_kk_k.h index e01e2a43f665..e80d84e32e53 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_z_as_zz_z.h index 4c2a7405091c..bbe7b956e99d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_cc_c.h index a9b520adcaec..81878f0f4859 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_zz_z.h index c3befa3e1b20..96320741b4b0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_z_as_zz_z.h index 32b2c41c2a6f..82df2b473845 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_d_as_dd_d.h index 6b83b8951e28..cfd85229688e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_z_as_zz_z.h index 5f88bde9cef5..25cb6b79c901 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_cc_c.h index b08ef8cdbbce..5ae02815a631 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_zz_z.h index e9176af75c2f..01ed63292801 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_d_as_dd_d.h index 885e9bbedf04..98418f4f1b26 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_dd_d.h index cbcfb6b67558..de580df959af 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_ff_f.h index c6f2ba301479..596615b843ab 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_z_as_zz_z.h index c34f0dc5689f..d32c0a29bd4a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_d_as_dd_d.h index 151f340db022..774f487db94d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_i_as_ii_i.h index 39c485db4671..8eeaf72c9a7a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_z_as_zz_z.h index fcaf4d3bf9d0..37b8b1843112 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/si_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_cc_c.h index 4d94751dd989..679050b155a8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_zz_z.h index a80ecdc1c24a..036e1c3c4685 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_d_as_dd_d.h index a2df98f3dc6f..f6a3e7044318 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_dd_d.h index cdf66f98a941..bb5ae69b05c6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_ff_f.h index 55b6edc60052..f84a0ae57256 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_i_as_ii_i.h index 99c87e309911..7295b15861c2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_k_as_kk_k.h index fb173ed6ee72..fcf2d5115790 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_z_as_zz_z.h index f6c4f638b522..616b77c29e08 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c.h index 563e480ee8f5..28f38693b2a5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_cc_c.h index 1d2056a925b9..a55fe5bb07ea 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_zz_z.h index 059fa7491679..719aed06b8ca 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d.h index 12868ecba051..dbb280a23c13 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d_as_dd_d.h index a80e14e19647..4440511b2e08 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f.h index 70d47e3bd273..02f32442c81a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_dd_d.h index 5ec3d12d9cb9..078c5c9c7f74 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_ff_f.h index d7734e3b538a..453264790c7d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i.h index 0bdeca148638..81995b6666fc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i_as_ii_i.h index ed49bf1bd145..6ec009eec9b9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k.h index 93b1ebd447d6..b4a3233d03e0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k_as_kk_k.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k_as_kk_k.h index 3fd21c833077..0a1980f33318 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k_as_kk_k.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_k_as_kk_k.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_s.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_s.h index a658a73714d8..13891a2032ba 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_s.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_s.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z.h index a3eedc51c7b6..c1d2be2adafb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z_as_zz_z.h index f65120fe61f1..82cf5c9ed9a7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ss_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_d_as_dd_d.h index e7b263fca4a7..34c9b2857af9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_i_as_ii_i.h index 28fbfe001aa2..f15252c7d686 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_z_as_zz_z.h index cc376d881ea6..e337105920c1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/st_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_d_as_dd_d.h index c4baf437e818..1ed5742afbc2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_z_as_zz_z.h index 74e2eafb7d0a..87558d2cf1d0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/su_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sz_z_as_zz_z.h index aef413bd8484..80f1923f3bae 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/sz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_cc_c.h index bafc2099183f..996dc9dd54c3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_zz_z.h index 42cedcba3d48..83419efc8b44 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_d_as_dd_d.h index 7e129ed67585..24df138124f7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_dd_d.h index bf3ead442ea3..d4a1a8aeb069 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_ff_f.h index eb108b72da8d..e99981b096ab 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_i_as_ii_i.h index 948c116a40b8..525f57ffcbee 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_t_as_tt_t.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_t_as_tt_t.h index 8223f69870e0..5ba12c1665ff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_t_as_tt_t.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_t_as_tt_t.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_u_as_uu_u.h index b353bb486795..05e1a92e3954 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_z_as_zz_z.h index d6bb76b83260..fe745b69f699 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_cc_c.h index 07cde2904e1f..1181d289d714 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_zz_z.h index a58809ca2e6a..fcb19ab92f49 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_z_as_zz_z.h index b9c9f71fcce3..e5ffcfe7164d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_d_as_dd_d.h index 81e9031198c4..49146fc56f61 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_z_as_zz_z.h index 1c4135ab4128..954c1437b8a9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/td_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_cc_c.h index a5f0b6ca7969..064f32603cc7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_zz_z.h index 9bde3ba6ff00..801b4b0ae358 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_d_as_dd_d.h index ca10ac8baaeb..5c42fd728a9a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_dd_d.h index c9a990a801c8..8fd239cfcc1b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_ff_f.h index c21b64e514eb..2fe619fa884c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_z_as_zz_z.h index 07d2831cfec2..a32a43af18a7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_d_as_dd_d.h index e0a8486a8939..271ff5bf4db7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_i_as_ii_i.h index cffaee203d73..31c8ebe912a2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_z_as_zz_z.h index 70b831e5b5e2..465da1e56d12 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ti_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_d_as_dd_d.h index 4ad015fe20a6..f5e2f4efdaf9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_i_as_ii_i.h index c5c7838b431c..fe7cf81656a8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_z_as_zz_z.h index 635fc0284a6c..5867efed6a24 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_d_as_dd_d.h index 669beed58133..ce4e9d27d4f8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_i_as_ii_i.h index 7bbb371f8bd5..075ecd2c45ea 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_z_as_zz_z.h index 82b99dc939e9..a4102ca82e49 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ts_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c.h index 105736eab437..78a01859d919 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_cc_c.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_cc_c.h index 5cdfec338c25..8b922e765510 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_cc_c.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_cc_c.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_zz_z.h index 83d3446fbd82..f70b21968cca 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_c_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d.h index 08b4e65908a5..b3fe5ba5d96b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d_as_dd_d.h index 266b39a364c9..d1171108f2e9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f.h index 4fb1991b27c7..60eb7dc9c741 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_dd_d.h index 87bf808e828e..2969667b3710 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_ff_f.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_ff_f.h index 83a30c94547b..e839cb393396 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_ff_f.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_f_as_ff_f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i.h index c6a352cd3747..9cd2e5449ebc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i_as_ii_i.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i_as_ii_i.h index df4d346aef75..f00a895cd3f3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i_as_ii_i.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_i_as_ii_i.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_t.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_t.h index 11a7ff98b790..2eecf7bda0c7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_t.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_t.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u.h index 95e49429cf1e..9933b3c45067 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u_as_uu_u.h index ad903d53f805..10892646546a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z.h index e001c43f0f19..a7aee691869a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z_as_zz_z.h index 3788c03a02ae..2ec35cba384f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tt_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_d_as_dd_d.h index f230cc2bcc90..4d8d191dd891 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_u_as_uu_u.h index d840c01dfda2..5984ce3c7312 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_z_as_zz_z.h index dc2b20e4abf5..c545350abbf4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tz_z_as_zz_z.h index 8d680e501007..4cf3ae000b54 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/tz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_d_as_dd_d.h index ce7439009dd9..0c59ba7d44b5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_u_as_uu_u.h index 71184cf76a98..3cf288b01155 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_z_as_zz_z.h index b657f889e403..0adf5c976a3c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ub_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uc_z_as_zz_z.h index e45f5d1b7147..b1711f361da5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_d_as_dd_d.h index e8bba294fc81..f4b8e87d8024 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_z_as_zz_z.h index 16d79e303453..8ab5db326f18 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ud_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_d_as_dd_d.h index eac9bf89c7a8..be2c1577048c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_z_as_zz_z.h index 97e1d8443482..d48d93564ec8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_d_as_dd_d.h index 2e208182562f..82968cdd1274 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_z_as_zz_z.h index 01bf856543e9..221f202f9a21 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ui_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_d_as_dd_d.h index 0bc082270156..0730372d2aa0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_z_as_zz_z.h index 0a4ee569e965..18f7d889d5b8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_d_as_dd_d.h index 7c2416584b2b..71e1976e4127 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_z_as_zz_z.h index b177930ddfc7..3bbd3847dbb7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/us_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_d_as_dd_d.h index 9197aee2fdaa..556714337f90 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_u_as_uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_u_as_uu_u.h index 167bc480d15a..ffb488ab8a4c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_u_as_uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_u_as_uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_z_as_zz_z.h index e7190a95b629..4c0e987195d6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/ut_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d.h index 9e22dbf7a110..5c06a4fa094b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d_as_dd_d.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d_as_dd_d.h index 5c457c16810a..9abac2e61e97 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d_as_dd_d.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_d_as_dd_d.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_u.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_u.h index 70610e50cd0a..ba4fecbd0932 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_u.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_u.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z.h index f2517affdaa3..b28ca78630fd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z_as_zz_z.h index 002ce048166f..c400cb2c1633 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uz_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uz_z_as_zz_z.h index 9614b70d6855..dc58eba96207 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uz_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/uz_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/xx_x.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/xx_x.h new file mode 100644 index 000000000000..7913a80b5675 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/xx_x.h @@ -0,0 +1,44 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* +* The following is auto-generated. Do not manually edit. See scripts/loops.js. +*/ + +#ifndef STDLIB_STRIDED_BASE_BINARY_XX_X_H +#define STDLIB_STRIDED_BASE_BINARY_XX_X_H + +#include + +/* +* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler. +*/ +#ifdef __cplusplus +extern "C" { +#endif + +/** +* Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. +*/ +void stdlib_strided_xx_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); + +#ifdef __cplusplus +} +#endif + +#endif // !STDLIB_STRIDED_BASE_BINARY_XX_X_H diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zb_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zb_z_as_zz_z.h index 289971ca52e1..3de37a42d690 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zb_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zb_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zc_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zc_z_as_zz_z.h index 832311bd2532..47dae87b0797 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zc_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zc_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zd_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zd_z_as_zz_z.h index feac97eefc39..2f5a555efe9c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zd_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zd_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zf_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zf_z_as_zz_z.h index 15eaa8ed9fcd..7278e3a6ea02 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zf_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zf_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zi_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zi_z_as_zz_z.h index 159023694861..08d6a83e2268 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zi_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zi_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zk_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zk_z_as_zz_z.h index c3d6ff4cc2f0..22f2c7ed9017 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zk_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zk_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zs_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zs_z_as_zz_z.h index 837896f18e93..3d130fc93fc3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zs_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zs_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zt_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zt_z_as_zz_z.h index 55a154cf2511..f0970e41d953 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zt_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zt_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zu_z_as_zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zu_z_as_zz_z.h index 2dd7fe4cf545..45f4f7dc13bb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zu_z_as_zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zu_z_as_zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zz_z.h b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zz_z.h index b85ab2ab880c..299da185942e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zz_z.h +++ b/lib/node_modules/@stdlib/strided/base/binary/include/stdlib/strided/base/binary/zz_z.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/strided/base/binary/manifest.json b/lib/node_modules/@stdlib/strided/base/binary/manifest.json index a992c1fe866d..2d5028131594 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/manifest.json +++ b/lib/node_modules/@stdlib/strided/base/binary/manifest.json @@ -368,6 +368,7 @@ "./src/uu_z.c", "./src/uu_z_as_zz_z.c", "./src/uz_z_as_zz_z.c", + "./src/xx_x.c", "./src/zb_z_as_zz_z.c", "./src/zc_z_as_zz_z.c", "./src/zd_z_as_zz_z.c", diff --git a/lib/node_modules/@stdlib/strided/base/binary/scripts/loops.js b/lib/node_modules/@stdlib/strided/base/binary/scripts/loops.js index 060924ce7385..8565f4bf4dfc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/scripts/loops.js +++ b/lib/node_modules/@stdlib/strided/base/binary/scripts/loops.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2021 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -134,6 +134,9 @@ function callbackBody( ch1, ch2, ch3 ) { if ( isComplexChar( ch1 ) || isComplexChar( ch2 ) || isComplexChar( ch3 ) ) { // eslint-disable-line max-len return '// ...'; } + if ( ch1 === 'x' || ch2 === 'x' || ch3 === 'x' ) { + return 'return x && y;'; + } return 'return x + y;'; } @@ -233,6 +236,10 @@ function signatures( dtypes ) { // Resolve the promoted type for the current dtype pair: t3 = promotionRules( t1, t2 ); + if ( t3 === -1 ) { + continue; + } + // Resolve single-letter dtype abbreviations: ch2 = dtypeChar( t2 ); ch3 = dtypeChar( t3 ); @@ -367,6 +374,9 @@ function createSourceFile( signature ) { if ( /z/.test( signature ) ) { inc.push( '#include "stdlib/complex/float64/ctor.h"' ); } + if ( /x/.test( signature ) ) { + inc.push( '#include ' ); + } if ( inc.length ) { file = replace( file, '{{INCLUDES}}', '\n'+inc.join( '\n' ) ); } else { @@ -384,6 +394,9 @@ function createSourceFile( signature ) { if ( /z/.test( tmp ) ) { inc.push( '#include "stdlib/complex/float64/ctor.h"' ); } + if ( /x/.test( tmp ) ) { + inc.push( '#include ' ); + } if ( inc.length ) { file = replace( file, '{{EXAMPLE_INCLUDES}}', '\n* '+inc.join( '\n* ' ) ); } else { @@ -552,6 +565,9 @@ function createDoc( signature ) { if ( /z/.test( tmp ) ) { inc.push( '#include "stdlib/complex/float64/ctor.h"' ); } + if ( /x/.test( tmp ) ) { + inc.push( '#include ' ); + } if ( inc.length ) { doc = replace( doc, '{{INCLUDES}}', '\n'+inc.join( '\n' ) ); } else { diff --git a/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/docs.txt b/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/docs.txt index b80425c4cb09..71e46249af87 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/docs.txt +++ b/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/docs.txt @@ -1,4 +1,4 @@ -#### stdlib_strided_{{SIGNATURE}}( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_{{SIGNATURE}}( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. @@ -20,12 +20,12 @@ int64_t strides[] = { {{INPUT_ARRAY_STRIDE_1}}, {{INPUT_ARRAY_STRIDE_2}}, {{OUTP int64_t shape[] = { {{N}} }; // Define a callback: -static {{CALLBACK_RETURN_TYPE}} add( {{CALLBACK_PARAM_TYPE_1}} x, {{CALLBACK_PARAM_TYPE_2}} y ) { +static {{CALLBACK_RETURN_TYPE}} fcn( {{CALLBACK_PARAM_TYPE_1}} x, {{CALLBACK_PARAM_TYPE_2}} y ) { {{CALLBACK_BODY}} } // Apply the callback: -stdlib_strided_{{SIGNATURE}}( arrays, shape, strides, (void *)add ); +stdlib_strided_{{SIGNATURE}}( arrays, shape, strides, (void *)fcn ); ``` The function accepts the following arguments: diff --git a/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/source.txt b/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/source.txt index 08a569440fc5..b506e8e23856 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/source.txt +++ b/lib/node_modules/@stdlib/strided/base/binary/scripts/templates/source.txt @@ -51,12 +51,12 @@ * int64_t shape[] = { {{N}} }; * * // Define a callback: -* static {{CALLBACK_RETURN_TYPE}} add( {{CALLBACK_PARAM_TYPE_1}} x, {{CALLBACK_PARAM_TYPE_2}} y ) { +* static {{CALLBACK_RETURN_TYPE}} fcn( {{CALLBACK_PARAM_TYPE_1}} x, {{CALLBACK_PARAM_TYPE_2}} y ) { * {{CALLBACK_BODY}} * } * * // Apply the callback: -* stdlib_strided_{{SIGNATURE}}( arrays, shape, strides, (void *)add ); +* stdlib_strided_{{SIGNATURE}}( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_{{SIGNATURE}}( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef {{CALLBACK_RETURN_TYPE}} func_type( const {{CALLBACK_PARAM_TYPE_1}} x, const {{CALLBACK_PARAM_TYPE_2}} y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_b.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_b.c index ff9986e9fa33..07b860d76c29 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_b.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_b.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_b( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_b( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c.c index 60fefe4f1766..a9cf8edc0964 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_cc_c.c index dc6ea217c3dd..f65dffe62c55 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_zz_z.c index e29ea9a5f315..9faa58ccba87 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_d.c index e8277549a1c9..912351db02d0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_d_as_dd_d.c index b8c3f155472b..19b96b3f76da 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f.c index be6ca6044441..9d0c99905519 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_dd_d.c index ab4b4b6fc9d1..8c0d4b2b05fe 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_ff_f.c index 74579cfb56c1..12606bea0e59 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_i.c index 0e368fac0633..0879a537d0c0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_i_as_ii_i.c index e4c5dbc98111..a158dc4784d7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_k.c index f2c4f0039516..73ba1f7445e2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_k_as_kk_k.c index a625b66a529d..ea4b6d7b63c1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_t.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_t.c index 6010621f64f5..029dbbeb2599 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_t.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_t.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_t( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_t( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_t_as_tt_t.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_t_as_tt_t.c index 4b48ccf28482..04762e13224d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_t_as_tt_t.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_t_as_tt_t.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_t_as_tt_t( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_t_as_tt_t( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_u.c index 693c91f97145..b481e2dd4f6e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_u_as_uu_u.c index 44e5337d464b..5048e9795713 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_z.c index a705f10780fa..cd13dedc8523 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint8_t add( uint8_t x, uint8_t y ) { +* static uint8_t fcn( uint8_t x, uint8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bb_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint8_t func_type( const uint8_t x, const uint8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bb_z_as_zz_z.c index 0d215e558d64..9f8f40415185 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_cc_c.c index 99d3f8fe2faa..8d54e483b116 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bc_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_zz_z.c index 4ad9c30a7a94..389d4a4f49cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bc_z_as_zz_z.c index b6dbe0985462..d76ddb811244 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bd_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bd_d_as_dd_d.c index 9e2f83b9c218..a30c68a5c680 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bd_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bd_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bd_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bd_z_as_zz_z.c index 30984647eb73..9ac61a85e32f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_cc_c.c index de61ac63ea61..0dff7a3d2dc2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bf_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_zz_z.c index 31747ec34828..cf03ecd3c8de 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bf_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_d_as_dd_d.c index dd72573d3254..57f358b50bb9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bf_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_dd_d.c index 246477d329fc..a4ea4b4fae9a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bf_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_ff_f.c index 85137664cfb3..5dc17a97cb87 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bf_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bf_z_as_zz_z.c index e4a467ba93e4..e90a337b96c8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bi_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bi_d_as_dd_d.c index 6c5e7bf91872..1901c3cc92e8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bi_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bi_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bi_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bi_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bi_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bi_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bi_i_as_ii_i.c index 0282bc5b6956..69df588c6470 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bi_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bi_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bi_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bi_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bi_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bi_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bi_z_as_zz_z.c index ff17f420dd47..ea08272fa69d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bi_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bi_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bi_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_cc_c.c index c993f3dd6bb4..11b3d95f72e0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bk_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_zz_z.c index aa8b577228fb..54837da60219 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bk_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_d_as_dd_d.c index b8cd0bec2e25..7594c9e51282 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_dd_d.c index be50b8edeaeb..77a9a43a5af6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bk_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_ff_f.c index 24ccfefecc24..12d5af9aa9d3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bk_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_i_as_ii_i.c index 9f51461d263a..70a42ceb371d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bk_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_k_as_kk_k.c index 6008afea5b15..cd70caeb7c63 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bk_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bk_z_as_zz_z.c index 5d01dcf3d467..181913d52dc5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_cc_c.c index e0eaaeff0f8d..d56da46bd3d2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bs_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_zz_z.c index e4ac5db4333f..de1858f4c36d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bs_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_d_as_dd_d.c index 95274c457aa1..3dae993a18b3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bs_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_dd_d.c index 7c66a82dc820..40b408da0381 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bs_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_ff_f.c index 5b70cbc969a5..8c69066ab824 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bs_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_i_as_ii_i.c index 2be45568a5e3..33e4f059d806 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bs_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_k_as_kk_k.c index c564bb26632a..2f29bc73e462 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bs_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bs_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bs_z_as_zz_z.c index 35d4e8898419..779c64ed33a2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bs_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bs_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bs_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_cc_c.c index 7096381efc44..019104ad648b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bt_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_zz_z.c index 2b0f1ce0135d..e7c93e1422b4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bt_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_d_as_dd_d.c index 7b42d575dc2a..bfcf88775b5a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_dd_d.c index a7f4ff1ee0c5..efbb391616e4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_ff_f.c index 9651f5daaa38..d549c56af5ce 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_i_as_ii_i.c index 3905c9ad0810..e462932c5910 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_t_as_tt_t.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_t_as_tt_t.c index 224966888914..7cae9b60c1a5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_t_as_tt_t.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_t_as_tt_t.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_t_as_tt_t( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_t_as_tt_t( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_u_as_uu_u.c index dbf641b98ef2..aa20e868623a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bt_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bt_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bt_z_as_zz_z.c index e6c72db37554..1bac53e6a644 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bt_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bt_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bt_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bu_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/bu_d_as_dd_d.c index a6cb96a3a7be..6129f72b2ab9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bu_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bu_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bu_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_bu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bu_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/bu_u_as_uu_u.c index 9e615fa71ef7..c3670089e240 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bu_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bu_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_bu_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_bu_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bu_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bu_z_as_zz_z.c index 24aa69ad146b..4e80b514f57c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/bz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/bz_z_as_zz_z.c index 7a911a5e7b63..d9c81e7eae8e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/bz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/bz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_bz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_bz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_bz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_cc_c.c index 9ae3adc9ae72..4fd885795e84 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_cb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_zz_z.c index 701382e92f3c..2937c59a9d57 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cb_z_as_zz_z.c index 3da4361e7fcd..38947ffa870a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/cc_c.c index 246d14fdf362..79166864027b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cc_c_as_zz_z.c index d70ed3b6b097..babc1b9a30ac 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cc_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cc_z.c index b9de0a497115..64be12ea2be8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cc_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cc_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cc_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cc_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cc_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cc_z_as_zz_z.c index 8a8f4c4a9367..182eb8fa0dc6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cd_z_as_zz_z.c index bc8839e1b2ce..b558a443c51c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_cc_c.c index 31585b357fc3..d41a3644b10d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cf_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_cf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_zz_z.c index c4156b67a730..cf82e99ea209 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cf_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cf_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cf_z_as_zz_z.c index a2f8e4647cba..77c5aaca09bc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ci_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ci_z_as_zz_z.c index 779f87992319..dfc00ccfdfeb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ci_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ci_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ci_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ci_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ci_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_cc_c.c index f980d39c3c49..ef552983e39f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ck_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ck_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ck_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_zz_z.c index a0f60842e212..7b8e1e340952 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ck_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ck_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ck_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ck_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ck_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ck_z_as_zz_z.c index d4857daf4583..943e8fbdc6a7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ck_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ck_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ck_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ck_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ck_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_cc_c.c index abf8b8a2a3a2..50a7db775741 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cs_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_cs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_zz_z.c index a237378a874a..45f60983c6e1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cs_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cs_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cs_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cs_z_as_zz_z.c index 5a9e870aaa17..eccc79888b24 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cs_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cs_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cs_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_cc_c.c index 7d360f9484b1..4f795146a4fd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ct_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ct_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ct_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_zz_z.c index 4edd98f09e7c..5f8ca48039ac 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ct_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ct_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ct_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ct_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ct_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ct_z_as_zz_z.c index c0ce5600c70b..d4420225b227 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ct_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ct_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ct_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ct_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ct_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cu_z_as_zz_z.c index 0a81fe8d0a93..046817561102 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/cz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/cz_z_as_zz_z.c index bc1aae2e1b85..3c1c6ad95e09 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/cz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/cz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_cz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_cz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_cz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/db_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/db_d_as_dd_d.c index 7837b1a6dcb7..ee70d7d1c4d9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/db_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/db_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_db_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_db_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_db_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/db_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/db_z_as_zz_z.c index c936f2bd57de..79e9b58bc835 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/db_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/db_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_db_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_db_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_db_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dc_z_as_zz_z.c index e505515ae4d1..a3b1de5c5f5a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_dc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/dd_d.c index bee4968ba2a8..6d829fd77140 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dd_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dd_z.c index a5ba6a64e3d1..c026c5be2d73 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dd_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dd_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_dd_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dd_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dd_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dd_z_as_zz_z.c index b2b2fd83ac08..088ff2f75b55 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_dd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/df_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/df_d_as_dd_d.c index af7450d4cfc5..ea818cca0186 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/df_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/df_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_df_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_df_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_df_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/df_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/df_z_as_zz_z.c index 08880b3bdbd0..ce5e490a5e27 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/df_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/df_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_df_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_df_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_df_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/di_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/di_d_as_dd_d.c index b8b22696adc6..4790a853d1d6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/di_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/di_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_di_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_di_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_di_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/di_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/di_z_as_zz_z.c index 7cb1fa346333..99446554ac80 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/di_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/di_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_di_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_di_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_di_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/dk_d_as_dd_d.c index 1590927aaa35..64013feb124f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_dk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_dk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dk_z_as_zz_z.c index 61f96da7f035..d4c2dfa11ef1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_dk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ds_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ds_d_as_dd_d.c index bfca4f90fa82..119557f7eaad 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ds_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ds_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ds_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ds_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ds_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ds_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ds_z_as_zz_z.c index 24e3b0931c2d..e9ee852e0894 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ds_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ds_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ds_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ds_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ds_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dt_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/dt_d_as_dd_d.c index e78df639ac02..8bc07a4a5959 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dt_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dt_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_dt_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_dt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dt_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dt_z_as_zz_z.c index 93d803cf6595..c300d27d8c66 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dt_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dt_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_dt_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/du_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/du_d_as_dd_d.c index bf58933c0b6d..b86047a55489 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/du_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/du_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_du_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_du_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_du_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/du_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/du_z_as_zz_z.c index 60d2dcd6613c..b5c8bc80b0b5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/du_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/du_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_du_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_du_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_du_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/dz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/dz_z_as_zz_z.c index e0b53bf5806c..9cbe96f169aa 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/dz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/dz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_dz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_dz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_dz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_cc_c.c index 97847042f613..d4c01fd957dc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_zz_z.c index 7e7f6bf8644a..9ea555d28733 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_d_as_dd_d.c index 32dfeb1abc4c..c749f8abb334 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fb_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_dd_d.c index a93ddb079a16..9271d873071a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fb_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_ff_f.c index e74c8df67872..aa7aa5ad806a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fb_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fb_z_as_zz_z.c index 8797eb362ba9..867a36feea82 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_cc_c.c index feb6e637d398..836935d9ff57 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fc_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_fc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_zz_z.c index c025760de5b0..67a1ccdb1309 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fc_z_as_zz_z.c index 16852858f748..a99caadb6def 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fd_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fd_d_as_dd_d.c index e3e7ec30d093..4f6934a91fbb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fd_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fd_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fd_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fd_z_as_zz_z.c index e8a46e131937..af1f8d29d657 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c.c index 237feb3c6b42..ae2e1f620727 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_cc_c.c index 67c4188ad1eb..1cf645ca5e30 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ff_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_zz_z.c index e15dc24794b2..e47453d63fb9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ff_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_d.c index ce49f12d90dc..a8854b682848 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_d_as_dd_d.c index ceb5abbd43f6..56b9725922ed 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_f.c index 5c985ab423aa..6e1d2050feaf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_f_as_dd_d.c index 0b74aa500109..4832577f8213 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_z.c index 9d9c5668062f..93e0d0f04e1f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ff_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ff_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ff_z_as_zz_z.c index 61df0fdee55e..a94d3bb3a03c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ff_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ff_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ff_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ff_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ff_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fi_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fi_d_as_dd_d.c index 224c6786251b..6351e1f8f6be 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fi_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fi_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fi_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fi_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fi_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fi_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fi_z_as_zz_z.c index 25ffca9ce079..02311b384ee5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fi_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fi_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fi_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_cc_c.c index 0775b4873cd4..c531d0d8f654 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fk_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_zz_z.c index 134c8fcad750..6a7136e8d6a7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fk_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_d_as_dd_d.c index 2b305649408f..3f2b9fa322cf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_dd_d.c index 4e01f0721761..2a9cb2c583cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fk_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_ff_f.c index e8dcac01d842..92a3f28ad433 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fk_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fk_z_as_zz_z.c index 19e2c62c9996..69f19b983def 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_cc_c.c index 81e12345d191..ffb432a6b393 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fs_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_zz_z.c index dc62922412e5..51c5c00ce1e8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fs_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_d_as_dd_d.c index 5ac469933d35..00d82b3052eb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fs_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_dd_d.c index 260a3bc410b8..0f350b7528c0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fs_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_ff_f.c index f435f1be243d..e37403a8ab34 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fs_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fs_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fs_z_as_zz_z.c index 0b6871f7dc3c..04b78f30a82a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fs_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fs_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fs_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_cc_c.c index 277b0cbb10cb..0e2b5d3a5d74 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ft_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_zz_z.c index 4d6c1324bc4e..9f5352a7d0b7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ft_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_d_as_dd_d.c index 331ba10237ad..a1f924bfdad2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ft_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_dd_d.c index f9e2b8746ecb..90b2f389e0dd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ft_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_ff_f.c index fce968aeadd2..bc776a2492ed 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ft_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ft_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ft_z_as_zz_z.c index a2bcbcec658b..dbba4dbae436 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ft_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ft_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ft_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ft_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ft_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fu_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/fu_d_as_dd_d.c index 176b32c40ca9..86fd7ce6cb06 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fu_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fu_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_fu_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_fu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fu_z_as_zz_z.c index 1f4112c0bb95..9333d1e0d4e3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/fz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/fz_z_as_zz_z.c index 5e4c3fade189..dbaf3c3b9dba 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/fz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/fz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_fz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_fz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_fz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ib_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ib_d_as_dd_d.c index 2ed5d1604582..e6322a437d2d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ib_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ib_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ib_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ib_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ib_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ib_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ib_i_as_ii_i.c index 05ad5795ba95..8bbe876d214c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ib_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ib_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ib_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ib_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ib_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ib_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ib_z_as_zz_z.c index 680f0d9a0c29..ae7515fbc812 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ib_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ib_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ib_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ib_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ib_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ic_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ic_z_as_zz_z.c index 1b74d724830f..7ee3f6a04fa3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ic_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ic_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ic_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ic_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ic_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/id_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/id_d_as_dd_d.c index a7a65e3ccc41..3c9df450d4a3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/id_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/id_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_id_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_id_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_id_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/id_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/id_z_as_zz_z.c index a7be651a841b..22760f696fe1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/id_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/id_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_id_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_id_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_id_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/if_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/if_d_as_dd_d.c index 7b7f9d415ad6..fcc2a0388435 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/if_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/if_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_if_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_if_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_if_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/if_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/if_z_as_zz_z.c index e09e151326fc..8a8bde98e0d7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/if_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/if_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_if_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_if_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_if_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ii_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ii_d.c index 1b293964bd93..49c8916b5e62 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ii_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ii_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ii_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ii_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ii_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ii_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ii_d_as_dd_d.c index 0339e9455a4a..c0d2bec9cd54 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ii_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ii_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ii_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ii_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ii_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ii_i.c index 1e5100bb3fc2..eb91f737df52 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ii_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ii_z.c index 14dfc2d140f0..56f7ac390312 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ii_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ii_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ii_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ii_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ii_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ii_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ii_z_as_zz_z.c index fdbfb667e555..e523577981b6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ii_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ii_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ii_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ii_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ii_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ik_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ik_d_as_dd_d.c index 487e64d76662..58c0009f7259 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ik_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ik_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ik_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ik_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ik_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ik_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ik_i_as_ii_i.c index c002a8a010e4..13adb928619f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ik_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ik_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ik_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ik_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ik_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ik_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ik_z_as_zz_z.c index eac35d3bca94..8b66394ce5cb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ik_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ik_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ik_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ik_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ik_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/is_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/is_d_as_dd_d.c index 17ca8c28450e..1913ace29ed4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/is_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/is_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_is_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_is_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_is_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/is_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/is_i_as_ii_i.c index b4043befca3e..0de5340d520b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/is_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/is_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_is_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_is_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_is_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/is_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/is_z_as_zz_z.c index 99e08484408c..942c244f22db 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/is_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/is_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_is_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_is_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_is_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/it_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/it_d_as_dd_d.c index 41436c7b0359..5d3e945caab7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/it_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/it_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_it_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_it_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_it_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/it_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/it_i_as_ii_i.c index 58fe666717ca..d63e30430568 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/it_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/it_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_it_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_it_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_it_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/it_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/it_z_as_zz_z.c index 95fed0501249..0b59ce63d4de 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/it_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/it_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_it_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_it_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_it_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/iu_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/iu_d_as_dd_d.c index af2ccdb36cbd..58103f1f814a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/iu_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/iu_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_iu_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_iu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_iu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/iu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/iu_z_as_zz_z.c index 510b6f43fa1d..daafb305b0cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/iu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/iu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_iu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_iu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_iu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/iz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/iz_z_as_zz_z.c index fd50d598f286..e68c8b35f50d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/iz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/iz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_iz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_iz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_iz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_cc_c.c index 2323ac62a7c3..98b24cf77627 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_zz_z.c index 86ffa42c2e04..bfc8bf8c7dd6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_d_as_dd_d.c index 6fa479fdb6aa..9917eea07e40 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kb_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_dd_d.c index 09ac23502c5c..91ee783fb95f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kb_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_ff_f.c index 03657e976c28..3ea41f498a5d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kb_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_i_as_ii_i.c index 7af9d1d1f7e1..ecf8708c4e94 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kb_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_k_as_kk_k.c index 44e5faa000f8..febe0e992424 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kb_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kb_z_as_zz_z.c index eef5c7ad1e40..a772836742cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_cc_c.c index f8440ef3dfd3..f505bc2aa8f1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kc_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_kc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_zz_z.c index 3348c9c7a439..6873ee77054d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kc_z_as_zz_z.c index a9d17af838d5..a1b54a826d2a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kd_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kd_d_as_dd_d.c index a87bddb79fdc..97b8ebad1cdd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kd_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kd_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kd_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kd_z_as_zz_z.c index 84e49a621034..8d9f38e978b0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_cc_c.c index cd3aa7afbf80..c95cf8ca654a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kf_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_zz_z.c index a2ccbe97afc9..c9b3b0bfcdae 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kf_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_d_as_dd_d.c index f94f200c2cd7..c259b2d99f03 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kf_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_dd_d.c index 7bd54acb6c73..1f6e114129eb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kf_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_ff_f.c index e914986acb65..3ab8ed8c1815 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kf_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kf_z_as_zz_z.c index 5ee0481f9462..32d821c659fe 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ki_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ki_d_as_dd_d.c index b527baf2392e..dc189a69987a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ki_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ki_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ki_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ki_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ki_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ki_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ki_i_as_ii_i.c index a4dac4f4ef3f..67de37ae4c62 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ki_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ki_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ki_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ki_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ki_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ki_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ki_z_as_zz_z.c index 1e0466a7776f..cc3b7471d19c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ki_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ki_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ki_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ki_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ki_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c.c index a86f900beaa6..8edca43d9edb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_cc_c.c index ae53a383b655..a521f387fe8b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kk_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_zz_z.c index e5d0fe97d948..e66717d6466e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kk_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_d.c index 59e8a5b74bfa..284908c0a5d6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_d_as_dd_d.c index 9c848b55fd4c..0c12a1450ca9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f.c index 85968e3191e4..92d99de3dbff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_dd_d.c index 2bb30dab4a50..063b08fb0046 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_ff_f.c index 18fc422ab79f..9feff49b066a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_i.c index 5bd011c8e00b..560d4c6fea1a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_i_as_ii_i.c index 59ec8e6a7e13..8a62679cc424 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_k.c index 228b010f88de..aa456fb22d5e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_z.c index 4ab403ce69eb..37af3171c3e0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kk_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kk_z_as_zz_z.c index 7324e39c05ad..45efc05339ac 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_cc_c.c index 4517ece6ecbf..ffeb89263f19 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ks_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_zz_z.c index bbc8adf5686b..51637c870398 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ks_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_d_as_dd_d.c index c207cf162269..200a7b212d57 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ks_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_dd_d.c index 72e1401af1ac..5777562c3d5e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ks_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_ff_f.c index 650b84a87d8d..9d92540e357a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ks_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_i_as_ii_i.c index a87852249449..36b14ec5a989 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ks_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_k_as_kk_k.c index 059bffe5b7a7..b52ac9dcecc1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ks_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ks_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ks_z_as_zz_z.c index 0852d8aeacb0..3802d0ce736a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ks_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ks_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ks_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ks_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ks_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kt_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/kt_d_as_dd_d.c index 77f0e34c0af0..1aa6866127c5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kt_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kt_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kt_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_kt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kt_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/kt_i_as_ii_i.c index 3bfab1b3bda2..9d367c2d734b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kt_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kt_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_kt_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_kt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kt_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kt_z_as_zz_z.c index eab665d25b18..8fae2267e62a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kt_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kt_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kt_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ku_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ku_d_as_dd_d.c index dd1d8026fff8..f5acd964c5e2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ku_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ku_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ku_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ku_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ku_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ku_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ku_z_as_zz_z.c index 9ec073258641..3b34a65c4687 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ku_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ku_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ku_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ku_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ku_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/kz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/kz_z_as_zz_z.c index 006f4329aca4..fac339d527ae 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/kz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/kz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_kz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_kz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_kz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_cc_c.c index 542fd94dd1c5..ee56dd898238 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_zz_z.c index 8db31fdf8d62..d4a05fe484dc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_d_as_dd_d.c index 618b72c4dd68..fd70fcd8fa71 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sb_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_dd_d.c index dedaa3adf4a3..8df1de298973 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sb_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_ff_f.c index 1944cfcafe29..07a1055f8aa7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sb_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_i_as_ii_i.c index 1c2613717921..8b207621083b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sb_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_k_as_kk_k.c index 51e45e467274..9c035cfd22f5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sb_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sb_z_as_zz_z.c index 5c700a12fd72..1829311f0892 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_cc_c.c index aac9ee854651..0b4234dba3c2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sc_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_sc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_zz_z.c index b9354b9ede3b..e17f00953890 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sc_z_as_zz_z.c index 999be5b0bf7e..d479a75cce9f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sd_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sd_d_as_dd_d.c index 51539be7fe3c..ab2016727e3a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sd_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sd_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sd_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sd_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sd_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sd_z_as_zz_z.c index 5c8f862de5a2..fd073c72b2e1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_cc_c.c index f8095d2664ec..50d9762cf2dd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sf_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_zz_z.c index da8e32546bfb..644b008b7786 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sf_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_d_as_dd_d.c index 719f48239969..d4b65c4069a4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sf_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_dd_d.c index 32c6e61a689f..185cbaeb80b6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sf_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_ff_f.c index 717ec38c94ac..5e64b51c69e5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sf_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sf_z_as_zz_z.c index e080fc9e461d..6c71b6f15216 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/si_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/si_d_as_dd_d.c index 82618032ec94..71f092068155 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/si_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/si_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_si_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_si_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_si_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/si_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/si_i_as_ii_i.c index fd410371cdb6..a5385ac75421 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/si_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/si_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_si_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_si_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_si_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/si_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/si_z_as_zz_z.c index f6e19991c93a..2b7bcfad227f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/si_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/si_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_si_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_si_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_si_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_cc_c.c index 3fa67aabaf2b..15683c4a9ae7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sk_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_zz_z.c index b1dc9834d093..9613dcefd7cb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sk_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_d_as_dd_d.c index efe8f9d5d8c8..2fd0c7b7c4cc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_dd_d.c index 5f7f0d2184c6..9e1d97a06396 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sk_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_ff_f.c index f4b605ba45a8..0535c01ed38f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sk_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_i_as_ii_i.c index 603b21521600..8120e62336d3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sk_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_k_as_kk_k.c index f42b2fb2d6c8..d62392b75bb0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_sk_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sk_z_as_zz_z.c index 7a4f6f41a244..e433643d4e8a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c.c index c95bee0280d9..051de4e1cab6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_cc_c.c index 6b4e83fe168c..ec562b063013 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ss_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_zz_z.c index 94bade461cde..eb734fe55543 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ss_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_d.c index 6340f6ca74bf..37802598bcd8 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_d_as_dd_d.c index f42c32d1c46f..81e6b7742826 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f.c index 6a355ed73872..4f1c2bb54927 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_dd_d.c index 4c76118a4b17..c204cb91b37e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_ff_f.c index e091024dfff4..1b710e9172bf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_i.c index 20625331f9de..5b9db48e2e03 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_i_as_ii_i.c index 63fb90aa74af..1e0730b773a0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_k.c index 6847f5ec7703..bb8f7dec4979 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_k_as_kk_k.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_k_as_kk_k.c index 0f1431cabad8..50de68ea01a0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_k_as_kk_k.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_k_as_kk_k.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int16_t add( int16_t x, int16_t y ) { +* static int16_t fcn( int16_t x, int16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_k_as_kk_k( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_k_as_kk_k( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_k_as_kk_k( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int16_t func_type( const int16_t x, const int16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_s.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_s.c index 4a01f5fd901d..829c0a00b311 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_s.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_s.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_s( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_s( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_s( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_z.c index 44f12fa7f640..9942cfa0be4e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int8_t add( int8_t x, int8_t y ) { +* static int8_t fcn( int8_t x, int8_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ss_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int8_t func_type( const int8_t x, const int8_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ss_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ss_z_as_zz_z.c index 805b69c8e88e..5c7571c37a94 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ss_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ss_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ss_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ss_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ss_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/st_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/st_d_as_dd_d.c index 296ebc692c16..54f0f888ecbc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/st_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/st_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_st_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_st_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_st_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/st_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/st_i_as_ii_i.c index 66bc7aa79e0b..87d0116d0a8d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/st_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/st_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_st_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_st_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_st_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/st_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/st_z_as_zz_z.c index 2ec598546187..0fa23ab936c7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/st_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/st_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_st_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_st_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_st_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/su_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/su_d_as_dd_d.c index b67618f4d4dd..78d54f0538bb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/su_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/su_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_su_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_su_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_su_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/su_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/su_z_as_zz_z.c index 59c6cc5a6623..a27cbab2be39 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/su_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/su_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_su_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_su_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_su_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/sz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/sz_z_as_zz_z.c index ec21a405e159..cf65b355343e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/sz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/sz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_sz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_sz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_sz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_cc_c.c index 5e48c8a1c5db..db45883fa48d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tb_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_zz_z.c index b8ff28b90df0..1e566c15c08b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tb_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_d_as_dd_d.c index 7ba80c3b0a1e..84ca9a3bf086 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_dd_d.c index ddbe10190779..77332fef9bac 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_ff_f.c index 3104f9d383c4..432319e60ac9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_i_as_ii_i.c index c6047f471be1..a0fdee0e8828 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_t_as_tt_t.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_t_as_tt_t.c index ec33c8e4ad4c..39de7cdf907d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_t_as_tt_t.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_t_as_tt_t.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_t_as_tt_t( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_t_as_tt_t( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_t_as_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_u_as_uu_u.c index 0c9220ece158..fa204e5f2999 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tb_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tb_z_as_zz_z.c index 233c26f5e8ba..f12c4e887993 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_cc_c.c index 0bd8b8134ef9..359407fab04a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tc_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_tc_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tc_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_zz_z.c index ce72f499ce38..a600731889e7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tc_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tc_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tc_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tc_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tc_z_as_zz_z.c index 1e148a1a0e86..69cf83cdc968 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/td_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/td_d_as_dd_d.c index 64e3c61e1eb0..8b8f080cbf85 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/td_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/td_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_td_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_td_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_td_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/td_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/td_z_as_zz_z.c index 660ab9cecca4..442fade42955 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/td_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/td_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_td_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_td_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_td_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_cc_c.c index 311111289554..cf05e7314681 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tf_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_zz_z.c index e1d0640c9a2b..4fed3426ce05 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tf_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_d_as_dd_d.c index 8b6ae2bec806..2d544ae8f461 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tf_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_dd_d.c index 40ba38f5ae61..8c9038768a5c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tf_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_ff_f.c index 3ce2c4e8b7bf..d9445e492601 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tf_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tf_z_as_zz_z.c index cc5fee86073c..139f528a55c0 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ti_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ti_d_as_dd_d.c index 22ee4c5bebc2..0483f78d38bc 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ti_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ti_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ti_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ti_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ti_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ti_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ti_i_as_ii_i.c index b2c27d1f06d1..08d007c8b72d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ti_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ti_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ti_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ti_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ti_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ti_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ti_z_as_zz_z.c index 60a6a9e2f2ac..af70b4976cda 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ti_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ti_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ti_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ti_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ti_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tk_d_as_dd_d.c index a818c330695f..0ede4d549904 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tk_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/tk_i_as_ii_i.c index ad967f6a1cb1..fde20066014c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tk_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tk_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tk_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_tk_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tk_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tk_z_as_zz_z.c index 53f4cc4b1f3f..0c65f7941fcf 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ts_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ts_d_as_dd_d.c index a36bfd0d353b..0b3f2a3fc4de 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ts_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ts_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ts_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ts_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ts_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ts_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/ts_i_as_ii_i.c index 54c9bf5d4ce1..7491a4b57918 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ts_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ts_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ts_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_ts_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ts_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ts_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ts_z_as_zz_z.c index 5d38fcaf4ac5..9ab625273efd 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ts_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ts_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ts_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ts_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ts_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c.c index 92b74333699d..7f1b57021b05 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_cc_c.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_cc_c.c index 608a08356984..489764e8d848 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_cc_c.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_cc_c.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex64_t add( stdlib_complex64_t x, stdlib_complex64_t y ) { +* static stdlib_complex64_t fcn( stdlib_complex64_t x, stdlib_complex64_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tt_c_as_cc_c( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_c_as_cc_c( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_c_as_cc_c( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex64_t func_type( const stdlib_complex64_t x, const stdlib_complex64_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_zz_z.c index ae11b08fa428..55069050daf1 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_c_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tt_c_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_c_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_c_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_d.c index 04f34775aa4f..3533990f27e4 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_d_as_dd_d.c index 52486ce2882f..3712f7bab619 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f.c index fce93053b6b2..527381118a40 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_dd_d.c index 0b1c8b34390f..f46baa726261 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_f_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_f_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_f_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_ff_f.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_ff_f.c index 329053fe48cf..af52294e851e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_ff_f.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_f_as_ff_f.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static float add( float x, float y ) { +* static float fcn( float x, float y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_f_as_ff_f( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_f_as_ff_f( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_f_as_ff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef float func_type( const float x, const float y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_i.c index 4316b3e5c269..f7be3780fdfa 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_i_as_ii_i.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_i_as_ii_i.c index 8fdaf658e21a..2b6ba3de453b 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_i_as_ii_i.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_i_as_ii_i.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static int32_t add( int32_t x, int32_t y ) { +* static int32_t fcn( int32_t x, int32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_i_as_ii_i( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_i_as_ii_i( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_i_as_ii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef int32_t func_type( const int32_t x, const int32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_t.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_t.c index 7c4580814cde..0654c4162f74 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_t.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_t.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_t( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_t( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_t( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_u.c index 46068ccf04c5..24b9887bb547 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_u_as_uu_u.c index 7e1f9097beb7..a690bff5fcff 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_z.c index a6369f37227b..bfbd827e7a98 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint16_t add( uint16_t x, uint16_t y ) { +* static uint16_t fcn( uint16_t x, uint16_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tt_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint16_t func_type( const uint16_t x, const uint16_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tt_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tt_z_as_zz_z.c index 8f54f4c5ff96..bb724a7c1c84 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tt_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tt_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tt_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tu_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/tu_d_as_dd_d.c index 247e6e79fc50..91472123a547 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tu_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tu_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tu_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_tu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tu_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/tu_u_as_uu_u.c index 33599b947c5d..149dbb202352 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tu_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tu_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_tu_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_tu_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tu_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tu_z_as_zz_z.c index 7795fc42f0e2..b97991d6100d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/tz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/tz_z_as_zz_z.c index 41840320235a..2075777cf18e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/tz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/tz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_tz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_tz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_tz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ub_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ub_d_as_dd_d.c index 1b5d80f64a5a..ac4236157ad5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ub_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ub_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ub_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ub_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ub_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ub_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/ub_u_as_uu_u.c index 4959f8938aff..f85889bec4b2 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ub_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ub_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ub_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_ub_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ub_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ub_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ub_z_as_zz_z.c index c9c10b4fc67e..ca4900141aec 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ub_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ub_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ub_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ub_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ub_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uc_z_as_zz_z.c index e1b16e8ca670..d940dfd222d5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_uc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ud_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ud_d_as_dd_d.c index 31bec896fa04..77833dc341c5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ud_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ud_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ud_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ud_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ud_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ud_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ud_z_as_zz_z.c index 7bce7290d907..aec1fab6b6c3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ud_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ud_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ud_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ud_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ud_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uf_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/uf_d_as_dd_d.c index 0ac5d6975448..be8946417d78 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uf_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uf_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uf_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_uf_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uf_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uf_z_as_zz_z.c index c8608221eaa6..374cbcba271a 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_uf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ui_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ui_d_as_dd_d.c index 5154c8b18388..07aadaa52f3f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ui_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ui_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ui_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ui_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ui_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ui_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ui_z_as_zz_z.c index ef2417163c5d..7ccc62faafe9 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ui_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ui_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ui_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ui_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ui_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uk_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/uk_d_as_dd_d.c index 1655c53d590a..09beffd0dd0c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uk_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uk_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uk_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_uk_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uk_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uk_z_as_zz_z.c index 7fb62c60df54..f1fe1b975a5c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_uk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/us_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/us_d_as_dd_d.c index 23134cf10cfd..10380437ebc3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/us_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/us_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_us_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_us_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_us_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/us_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/us_z_as_zz_z.c index 54e82e443945..f6c90b8282b3 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/us_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/us_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_us_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_us_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_us_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ut_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/ut_d_as_dd_d.c index 2c2dfc3dbeb7..f9426e44112c 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ut_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ut_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ut_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_ut_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ut_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ut_u_as_uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/ut_u_as_uu_u.c index a84bd16352ea..d2aa872d6bda 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ut_u_as_uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ut_u_as_uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_ut_u_as_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_ut_u_as_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ut_u_as_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/ut_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/ut_z_as_zz_z.c index 42ee059648f9..fba41d15b813 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/ut_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/ut_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_ut_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_ut_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_ut_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uu_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/uu_d.c index 889dc908987b..a38792ec843d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uu_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uu_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uu_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_uu_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uu_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uu_d_as_dd_d.c b/lib/node_modules/@stdlib/strided/base/binary/src/uu_d_as_dd_d.c index 8c8f2d472c94..2bf55a2e4703 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uu_d_as_dd_d.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uu_d_as_dd_d.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static double add( double x, double y ) { +* static double fcn( double x, double y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uu_d_as_dd_d( arrays, shape, strides, (void *)add ); +* stdlib_strided_uu_d_as_dd_d( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uu_d_as_dd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef double func_type( const double x, const double y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uu_u.c b/lib/node_modules/@stdlib/strided/base/binary/src/uu_u.c index 191f2ceda6cc..722fce78a891 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uu_u.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uu_u.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,12 +51,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uu_u( arrays, shape, strides, (void *)add ); +* stdlib_strided_uu_u( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uu_u( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uu_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uu_z.c index 840736771851..84c1a0b5f219 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uu_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uu_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -52,12 +52,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static uint32_t add( uint32_t x, uint32_t y ) { +* static uint32_t fcn( uint32_t x, uint32_t y ) { * return x + y; * } * * // Apply the callback: -* stdlib_strided_uu_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uu_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uu_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef uint32_t func_type( const uint32_t x, const uint32_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uu_z_as_zz_z.c index da21fb5b88c5..23a118cfc182 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_uu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/uz_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/uz_z_as_zz_z.c index 85de7236c225..543085200210 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/uz_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/uz_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_uz_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_uz_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_uz_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/xx_x.c b/lib/node_modules/@stdlib/strided/base/binary/src/xx_x.c new file mode 100644 index 000000000000..4ba567bfdb94 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/binary/src/xx_x.c @@ -0,0 +1,67 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* +* The following is auto-generated. Do not manually edit. See scripts/loops.js. +*/ + +#include "stdlib/strided/base/binary/xx_x.h" +#include "stdlib/strided/base/binary/macros.h" +#include +#include + +/** +* Applies a binary callback to strided input array elements and assigns results to elements in a strided output array. +* +* @param arrays array whose first two elements are pointers to strided input arrays and whose last element is a pointer to a strided output array +* @param shape array whose only element is the number of elements over which to iterate +* @param strides array containing strides (in bytes) for each strided array +* @param fcn callback +* +* @example +* #include "stdlib/strided/base/binary/xx_x.h" +* #include +* #include +* +* // Create underlying byte arrays: +* uint8_t x[] = { 0, 0, 0 }; +* uint8_t y[] = { 0, 0, 0 }; +* uint8_t out[] = { 0, 0, 0 }; +* +* // Define a pointer to an array containing pointers to strided arrays: +* uint8_t *arrays[] = { x, y, out }; +* +* // Define the strides: +* int64_t strides[] = { 1, 1, 1 }; +* +* // Define the number of elements over which to iterate: +* int64_t shape[] = { 3 }; +* +* // Define a callback: +* static bool fcn( bool x, bool y ) { +* return x && y; +* } +* +* // Apply the callback: +* stdlib_strided_xx_x( arrays, shape, strides, (void *)fcn ); +*/ +void stdlib_strided_xx_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { + typedef bool func_type( const bool x, const bool y ); + func_type *f = (func_type *)fcn; + STDLIB_STRIDED_BINARY_LOOP_CLBK_MIXED( bool, bool, bool ) +} diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zb_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zb_z_as_zz_z.c index f7e91bcbc909..7e7a1fd15409 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zb_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zb_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zb_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zb_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zb_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zc_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zc_z_as_zz_z.c index 7463328c4755..edb567f1c010 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zc_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zc_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zc_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zc_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zc_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zd_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zd_z_as_zz_z.c index 4696ea8d3fae..6166ba9428eb 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zd_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zd_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zd_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zd_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zd_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zf_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zf_z_as_zz_z.c index 0c38f1d4b4ab..160780adcdf6 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zf_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zf_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zf_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zf_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zf_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zi_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zi_z_as_zz_z.c index eb8b276e0844..869cea5e51e7 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zi_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zi_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zi_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zi_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zi_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zk_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zk_z_as_zz_z.c index d146d0160577..db890ac9136f 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zk_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zk_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zk_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zk_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zk_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zs_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zs_z_as_zz_z.c index 36840d9577ac..8a958f1b365e 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zs_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zs_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zs_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zs_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zs_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zt_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zt_z_as_zz_z.c index ad98cf192d6a..c50e74138707 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zt_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zt_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zt_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zt_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zt_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zu_z_as_zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zu_z_as_zz_z.c index da21877c170e..e9eb06aa21df 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zu_z_as_zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zu_z_as_zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zu_z_as_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zu_z_as_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zu_z_as_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y ); diff --git a/lib/node_modules/@stdlib/strided/base/binary/src/zz_z.c b/lib/node_modules/@stdlib/strided/base/binary/src/zz_z.c index 7bc95cb3982d..ee1b118fa0e5 100644 --- a/lib/node_modules/@stdlib/strided/base/binary/src/zz_z.c +++ b/lib/node_modules/@stdlib/strided/base/binary/src/zz_z.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2023 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -53,12 +53,12 @@ * int64_t shape[] = { 3 }; * * // Define a callback: -* static stdlib_complex128_t add( stdlib_complex128_t x, stdlib_complex128_t y ) { +* static stdlib_complex128_t fcn( stdlib_complex128_t x, stdlib_complex128_t y ) { * // ... * } * * // Apply the callback: -* stdlib_strided_zz_z( arrays, shape, strides, (void *)add ); +* stdlib_strided_zz_z( arrays, shape, strides, (void *)fcn ); */ void stdlib_strided_zz_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { typedef stdlib_complex128_t func_type( const stdlib_complex128_t x, const stdlib_complex128_t y );