diff --git a/lib/node_modules/@stdlib/strided/base/unary/README.md b/lib/node_modules/@stdlib/strided/base/unary/README.md index 78e204fb2263..d8a0778cd500 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/README.md +++ b/lib/node_modules/@stdlib/strided/base/unary/README.md @@ -191,6 +191,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). @@ -6000,6 +6001,47 @@ The function accepts the following arguments: void stdlib_strided_u_z_as_z_z( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); ``` +#### stdlib_strided_x_x( \*arrays\[], \*shape, \*strides, \*fcn ) + +Applies a unary 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 out[] = { 0, 0, 0 }; + +// Define a pointer to an array containing pointers to strided arrays: +uint8_t *arrays[] = { x, out }; + +// Define the strides: +int64_t strides[] = { 1, 1 }; + +// Define the number of elements over which to iterate: +int64_t shape[] = { 3 }; + +// Define a callback: +static bool fcn( bool x ) { + return x; +} + +// Apply the callback: +stdlib_strided_x_x( arrays, shape, strides, (void *)fcn ); +``` + +The function accepts the following arguments: + +- **arrays**: `[inout] uint8_t**` array whose first element is a pointer to a strided input array and whose second 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)` function to apply provided as a `void` pointer. + +```c +void stdlib_strided_x_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); +``` + #### stdlib_strided_z_d_as_z_d( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. diff --git a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary.h index b628ad244c7b..11b63bf5e4f7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary.h @@ -178,6 +178,8 @@ #include "unary/u_z_as_u_z.h" #include "unary/u_z_as_z_z.h" +#include "unary/x_x.h" + #include "unary/z_d_as_z_d.h" #include "unary/z_z.h" // END LOOPS diff --git a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b.h index 2b98430acd04..85846cbcaa18 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_b_as_u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b_as_u_u.h index 60a8017462e8..1d6cb2f636e2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b_as_u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_b_as_u_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/unary/include/stdlib/strided/base/unary/b_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c.h index ed9ddb4acf74..9850e1c79681 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_c_as_b_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_b_c.h index f6baffc44543..e92510eacc85 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_b_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_b_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/unary/include/stdlib/strided/base/unary/b_c_as_c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_c_c.h index 804e46149e7e..67c988a4dd40 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_c_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/unary/include/stdlib/strided/base/unary/b_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_z_z.h index d5c753db05af..6582fc754135 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_c_as_z_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/unary/include/stdlib/strided/base/unary/b_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d.h index 15f366e62d4c..bba6218e9e1a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_d_as_b_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_b_d.h index f9960b9b4381..b2a98f933c81 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_b_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_b_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/unary/include/stdlib/strided/base/unary/b_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_d_d.h index d633af9a9d43..02f0179a7b70 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_d_as_d_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/unary/include/stdlib/strided/base/unary/b_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f.h index 0364b6a74942..40dc879d1073 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_f_as_b_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_b_f.h index 4240e102da40..12e2f31949ac 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_b_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_b_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/unary/include/stdlib/strided/base/unary/b_f_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_d_d.h index 8f9883ab42d6..7d4012b095e0 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_d_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/unary/include/stdlib/strided/base/unary/b_f_as_f_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_f_f.h index 601d24af3851..6814a3ca3bad 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_f_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_f_as_f_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/unary/include/stdlib/strided/base/unary/b_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i.h index 3fb5068d2844..740593b775d9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_i_as_b_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_b_i.h index db0530ea07c7..b770efafc04b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_b_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_b_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/unary/include/stdlib/strided/base/unary/b_i_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_i_i.h index b04275bb677a..00eb66312e01 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_i_as_i_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/unary/include/stdlib/strided/base/unary/b_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k.h index 00ae4802be3e..60c5222756cd 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_k_as_b_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_b_k.h index fc236bc15af1..fe7685ec63f7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_b_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_b_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/unary/include/stdlib/strided/base/unary/b_k_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_i_i.h index 8e521a033e96..f935a269d092 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_i_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/unary/include/stdlib/strided/base/unary/b_k_as_k_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_k_k.h index cbb7a54f4e61..0a5e1fb73928 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_k_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_k_as_k_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/unary/include/stdlib/strided/base/unary/b_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t.h index 4f9b1fa8e637..18c44f03ba24 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_t_as_b_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_b_t.h index 5408107437f3..36261a2a8cc6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_b_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_b_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/unary/include/stdlib/strided/base/unary/b_t_as_t_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_t_t.h index 00a191fce7a4..1ad2fd14bdc2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_t_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_t_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/unary/include/stdlib/strided/base/unary/b_t_as_u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_u_u.h index 1ce7d4854fd9..aaee2deababd 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_t_as_u_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/unary/include/stdlib/strided/base/unary/b_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u.h index 40a77d188c57..9d900a7ecd77 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_u_as_b_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_b_u.h index 804909e090a7..defff1261c3f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_b_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_b_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/unary/include/stdlib/strided/base/unary/b_u_as_u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_u_u.h index 98f15015bdb9..ac9ee144fd5f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_u_as_u_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/unary/include/stdlib/strided/base/unary/b_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z.h index e7162406c691..77ed0156892c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_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/unary/include/stdlib/strided/base/unary/b_z_as_b_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_b_z.h index 435f5d2071c8..d4081f7048b9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_b_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_b_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/unary/include/stdlib/strided/base/unary/b_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_z_z.h index 0be07a4b2be2..bec085386c3e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/b_z_as_z_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/unary/include/stdlib/strided/base/unary/c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_c.h index a536a7446442..4a5c112cc1ca 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_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/unary/include/stdlib/strided/base/unary/c_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_c_as_z_z.h index c81591d7e3de..5d15ce8acd92 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_c_as_z_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/unary/include/stdlib/strided/base/unary/c_f_as_c_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_f_as_c_f.h index 5d3b045c8e9b..14a54234f110 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_f_as_c_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_f_as_c_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/unary/include/stdlib/strided/base/unary/c_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z.h index e175880eee15..cdaa37f95d96 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_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/unary/include/stdlib/strided/base/unary/c_z_as_c_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_c_z.h index 9f0a1950c2d8..c17ba538fd32 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_c_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_c_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/unary/include/stdlib/strided/base/unary/c_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_z_z.h index 6f202d0824af..06f78009623f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/c_z_as_z_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/unary/include/stdlib/strided/base/unary/d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_d.h index a59e0dc1d4e5..d26ff53219dc 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_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/unary/include/stdlib/strided/base/unary/d_i_as_d_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_i_as_d_i.h index 56f8bac91971..3b36f75fe258 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_i_as_d_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_i_as_d_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/unary/include/stdlib/strided/base/unary/d_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z.h index 7d2ab3201ecc..4730207491d4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_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/unary/include/stdlib/strided/base/unary/d_z_as_d_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_d_z.h index 428d3636e335..727b5fcab3f4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_d_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_d_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/unary/include/stdlib/strided/base/unary/d_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_z_z.h index 16b10fb7e3ea..1527efb8603b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/d_z_as_z_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/unary/include/stdlib/strided/base/unary/f_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c.h index a54a63ce4bc3..6e65980f47bf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_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/unary/include/stdlib/strided/base/unary/f_c_as_c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_c_c.h index 2e02505c5360..56bc31206a9b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_c_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/unary/include/stdlib/strided/base/unary/f_c_as_f_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_f_c.h index 0673241cb59d..35235fcedf90 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_f_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_f_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/unary/include/stdlib/strided/base/unary/f_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_z_z.h index 3870e18a1063..6ea792be5682 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_c_as_z_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/unary/include/stdlib/strided/base/unary/f_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d.h index bb927c1639a5..ecc471054162 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_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/unary/include/stdlib/strided/base/unary/f_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_d_d.h index da62896f9f79..22ea33d1d70d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_d_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/unary/include/stdlib/strided/base/unary/f_d_as_f_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_f_d.h index fd7648b38581..4407e9af7766 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_f_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_d_as_f_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/unary/include/stdlib/strided/base/unary/f_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_f.h index e6c9d4170f57..7dced86793a7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_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/unary/include/stdlib/strided/base/unary/f_f_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_f_as_d_d.h index 5292713211ef..29f469a31e59 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_f_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_f_as_d_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/unary/include/stdlib/strided/base/unary/f_i_as_f_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_i_as_f_i.h index a1e2ff6d8131..94068d698c68 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_i_as_f_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_i_as_f_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/unary/include/stdlib/strided/base/unary/f_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z.h index a099b2debabe..79c33d46f4da 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_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/unary/include/stdlib/strided/base/unary/f_z_as_f_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_f_z.h index 0f2e88ebcd22..685292446b5e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_f_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_f_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/unary/include/stdlib/strided/base/unary/f_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_z_z.h index 5918ea3df73b..09c5a1b36882 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/f_z_as_z_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/unary/include/stdlib/strided/base/unary/i_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d.h index 9ecf0316e3d0..d8c61f23714f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_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/unary/include/stdlib/strided/base/unary/i_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_d_d.h index 7fee0f7407a2..1ce31504a4ce 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_d_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/unary/include/stdlib/strided/base/unary/i_d_as_i_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_i_d.h index f251059a1315..a2bf5cb3cfaf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_i_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_d_as_i_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/unary/include/stdlib/strided/base/unary/i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_i.h index cd2cfc3679ec..611fc1a5fd48 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_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/unary/include/stdlib/strided/base/unary/i_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_u.h index ceeca3918583..7bc38585b6eb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_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/unary/include/stdlib/strided/base/unary/i_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z.h index 8414d5b6337f..5ed4243919bc 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_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/unary/include/stdlib/strided/base/unary/i_z_as_i_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_i_z.h index 6aa0f263c93d..22b7a83a53ed 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_i_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_i_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/unary/include/stdlib/strided/base/unary/i_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_z_z.h index b0b47ef31ef7..c628c091861e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/i_z_as_z_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/unary/include/stdlib/strided/base/unary/k_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c.h index 57f7793e5898..4cb166972fa9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_c_as_c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_c_c.h index b7450c36ff13..e2ac44298dc7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_c_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/unary/include/stdlib/strided/base/unary/k_c_as_k_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_k_c.h index 5e060170eb94..1dfb93dacd09 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_k_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_k_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/unary/include/stdlib/strided/base/unary/k_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_z_z.h index 03b22af582a6..81fd5acfafe0 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_c_as_z_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/unary/include/stdlib/strided/base/unary/k_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d.h index 9d994db09316..901f27a6eff7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_d_d.h index 04a375619edd..84337481d695 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_d_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/unary/include/stdlib/strided/base/unary/k_d_as_k_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_k_d.h index 9a5635cff6ce..9ffe4cd8ed9a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_k_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_d_as_k_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/unary/include/stdlib/strided/base/unary/k_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f.h index e82cba060d34..edb2ed648f5f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_f_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_d_d.h index 36388ed6888b..e7000d61ea1b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_d_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/unary/include/stdlib/strided/base/unary/k_f_as_f_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_f_f.h index cface233d8ee..121280ebe4e2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_f_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_f_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/unary/include/stdlib/strided/base/unary/k_f_as_k_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_k_f.h index 44cc94887ce9..79fd37f2bfc1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_k_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_f_as_k_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/unary/include/stdlib/strided/base/unary/k_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i.h index d51ca6c1a51d..9c83b3e476bf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_i_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_i_i.h index d19a659bce57..688979472630 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_i_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/unary/include/stdlib/strided/base/unary/k_i_as_k_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_k_i.h index d7dbfc0cfa29..ae95a6ded0e6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_k_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_i_as_k_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/unary/include/stdlib/strided/base/unary/k_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_k.h index bd8ecf2589b5..2c29e9edfabf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_k_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_k_as_i_i.h index 49b24a12c99c..421f1f3e1a1e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_k_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_k_as_i_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/unary/include/stdlib/strided/base/unary/k_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_t.h index cda46f6a44a6..432830b90069 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_t_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_t_as_i_i.h index 1902cc4be953..587da72fae98 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_t_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_t_as_i_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/unary/include/stdlib/strided/base/unary/k_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_u.h index d3d1438f7567..c695b8baff6c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_u_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_u_as_i_i.h index 2bcee2471034..d1dc3953c128 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_u_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_u_as_i_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/unary/include/stdlib/strided/base/unary/k_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z.h index 31f76c053d66..38d27a7f031e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_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/unary/include/stdlib/strided/base/unary/k_z_as_k_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_k_z.h index fff313fe8809..fcc1127b2b75 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_k_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_k_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/unary/include/stdlib/strided/base/unary/k_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_z_z.h index b93a49c3a594..3ef0f3abfaf9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/k_z_as_z_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/unary/include/stdlib/strided/base/unary/s_b.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_b.h index 53caf0ea930b..d26d132f2681 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_b.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c.h index 64779572a211..b58732b1194f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_c_as_c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_c_c.h index f9f0671de92b..84fdd98b89eb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_c_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/unary/include/stdlib/strided/base/unary/s_c_as_s_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_s_c.h index 62b7e92c82fe..0bbcbb51f390 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_s_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_s_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/unary/include/stdlib/strided/base/unary/s_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_z_z.h index d69c47a19bb1..f3c45bec8eef 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_c_as_z_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/unary/include/stdlib/strided/base/unary/s_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d.h index 10befdb70a5e..fc0ab1ad1de6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_d_d.h index 05637b8e321c..80d6ac670f7f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_d_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/unary/include/stdlib/strided/base/unary/s_d_as_s_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_s_d.h index 3850bf57d7d0..a8602f53d7b5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_s_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_d_as_s_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/unary/include/stdlib/strided/base/unary/s_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f.h index 623062924e76..806205e8c480 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_f_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_d_d.h index 6eddf789e13d..1fc1b41d5798 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_d_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/unary/include/stdlib/strided/base/unary/s_f_as_f_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_f_f.h index b4a741b1dfc5..373c61babbc6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_f_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_f_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/unary/include/stdlib/strided/base/unary/s_f_as_s_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_s_f.h index 8e80452de2c3..0f3283631073 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_s_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_f_as_s_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/unary/include/stdlib/strided/base/unary/s_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i.h index 31cf6f2711ba..ec8ba860d832 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_i_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_i_i.h index 5bbd02142aeb..30eb436f0bba 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_i_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/unary/include/stdlib/strided/base/unary/s_i_as_s_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_s_i.h index 513cea234f53..0a3f966a43ed 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_s_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_i_as_s_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/unary/include/stdlib/strided/base/unary/s_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k.h index 20d35779b806..0d55d726fe46 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_k_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_i_i.h index ca45c262fe1e..6533075202a1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_i_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/unary/include/stdlib/strided/base/unary/s_k_as_k_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_k_k.h index 6af712c5656e..bb62d1f285a5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_k_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_k_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/unary/include/stdlib/strided/base/unary/s_k_as_s_k.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_s_k.h index de18c8b5840a..d7dd2a8671f7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_s_k.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_k_as_s_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/unary/include/stdlib/strided/base/unary/s_s.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_s.h index 688c7b082571..f21d5b099110 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_s.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_s_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_s_as_i_i.h index 8450b4c8dcf5..c1781f7ec032 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_s_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_s_as_i_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/unary/include/stdlib/strided/base/unary/s_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_t.h index 9d70b51a9589..9289cecce264 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_t_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_t_as_i_i.h index 90fb8bf7a817..2b3e192c7fcc 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_t_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_t_as_i_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/unary/include/stdlib/strided/base/unary/s_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_u.h index 27bb2a12c55b..8e405d7e37c4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_u_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_u_as_i_i.h index 1c7eaef9021f..5b55897e80f2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_u_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_u_as_i_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/unary/include/stdlib/strided/base/unary/s_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z.h index d8317112a7ea..32cb5c432ac3 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_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/unary/include/stdlib/strided/base/unary/s_z_as_s_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_s_z.h index 318aafe94215..4e7e215f3de3 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_s_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_s_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/unary/include/stdlib/strided/base/unary/s_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_z_z.h index f583877d63df..7d050f412f0b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/s_z_as_z_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/unary/include/stdlib/strided/base/unary/t_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c.h index 4b1ac036e2b9..ba4516f12ea1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_c_as_c_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_c_c.h index c34b0c0f0b8e..6a9802d6c659 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_c_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_c_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/unary/include/stdlib/strided/base/unary/t_c_as_t_c.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_t_c.h index 0ef9b3a87fda..68dfe2dc60d9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_t_c.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_t_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/unary/include/stdlib/strided/base/unary/t_c_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_z_z.h index 4a51f5629b19..6118c8018c53 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_c_as_z_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/unary/include/stdlib/strided/base/unary/t_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d.h index 03fc12b48125..d0d221584ab1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_d_d.h index cd4de2562ab5..30fe46d02782 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_d_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/unary/include/stdlib/strided/base/unary/t_d_as_t_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_t_d.h index 3d2448f1fac4..b71334bce82b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_t_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_d_as_t_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/unary/include/stdlib/strided/base/unary/t_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f.h index ef0244ff6bff..12b761868f9a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_f_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_d_d.h index 2dddcb765593..f9940efe84b8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_d_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/unary/include/stdlib/strided/base/unary/t_f_as_f_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_f_f.h index 5b8ab91bea40..080bbaa85472 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_f_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_f_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/unary/include/stdlib/strided/base/unary/t_f_as_t_f.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_t_f.h index 0695ba51dcba..f3dda274b22d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_t_f.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_f_as_t_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/unary/include/stdlib/strided/base/unary/t_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i.h index 7daa866d215f..9bd911496402 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_i_as_i_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_i_i.h index 4bd81a1b55d9..6b2a9600f082 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_i_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_i_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/unary/include/stdlib/strided/base/unary/t_i_as_t_i.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_t_i.h index b693cc128b49..96024765f626 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_t_i.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_i_as_t_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/unary/include/stdlib/strided/base/unary/t_t.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_t.h index a09b605ea92e..c9c134fc3760 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_t.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_t_as_u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_t_as_u_u.h index 57c4cb7ed2a4..ef19afb84576 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_t_as_u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_t_as_u_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/unary/include/stdlib/strided/base/unary/t_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u.h index e25ab11eaf3b..f7369bc6da6e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_u_as_t_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_t_u.h index 22d9dfc6ff7d..01808b6af955 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_t_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_t_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/unary/include/stdlib/strided/base/unary/t_u_as_u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_u_u.h index e2826c3d244d..e34a920c0ded 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_u_as_u_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/unary/include/stdlib/strided/base/unary/t_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z.h index 052de75173e3..54fa31034f5e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_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/unary/include/stdlib/strided/base/unary/t_z_as_t_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_t_z.h index 1923a1e28cce..c61492e431fb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_t_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_t_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/unary/include/stdlib/strided/base/unary/t_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_z_z.h index 82ced819dbdd..ceec5944e674 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/t_z_as_z_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/unary/include/stdlib/strided/base/unary/u_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d.h index 7b8243cd2ff2..a5511b983809 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_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/unary/include/stdlib/strided/base/unary/u_d_as_d_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_d_d.h index 868c666f5fd4..91ff1ba12ba4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_d_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_d_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/unary/include/stdlib/strided/base/unary/u_d_as_u_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_u_d.h index 7942d402b9d2..a0b42d25fd0f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_u_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_d_as_u_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/unary/include/stdlib/strided/base/unary/u_u.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_u.h index b7a7cce328e1..d1f81fa8ac99 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_u.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_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/unary/include/stdlib/strided/base/unary/u_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z.h index bdf196d74d7d..b4b2309e1369 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_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/unary/include/stdlib/strided/base/unary/u_z_as_u_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_u_z.h index d497d09d2973..1d3826daf673 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_u_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_u_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/unary/include/stdlib/strided/base/unary/u_z_as_z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_z_z.h index 554a23816b1c..c2c15bf2832c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/u_z_as_z_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/unary/include/stdlib/strided/base/unary/x_x.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/x_x.h new file mode 100644 index 000000000000..bfd40d28787c --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/x_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_UNARY_X_X_H +#define STDLIB_STRIDED_BASE_UNARY_X_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 unary callback to strided input array elements and assigns results to elements in a strided output array. +*/ +void stdlib_strided_x_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ); + +#ifdef __cplusplus +} +#endif + +#endif // !STDLIB_STRIDED_BASE_UNARY_X_X_H diff --git a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_d_as_z_d.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_d_as_z_d.h index 8f0e6f3f37d6..565b58cc0e40 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_d_as_z_d.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_d_as_z_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/unary/include/stdlib/strided/base/unary/z_z.h b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_z.h index 66c3dba2c504..667ef7455c2a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_z.h +++ b/lib/node_modules/@stdlib/strided/base/unary/include/stdlib/strided/base/unary/z_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/unary/manifest.json b/lib/node_modules/@stdlib/strided/base/unary/manifest.json index 0df1199f9382..de18c8d0a94b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/manifest.json +++ b/lib/node_modules/@stdlib/strided/base/unary/manifest.json @@ -167,6 +167,7 @@ "./src/u_z.c", "./src/u_z_as_u_z.c", "./src/u_z_as_z_z.c", + "./src/x_x.c", "./src/z_d_as_z_d.c", "./src/z_z.c" ], diff --git a/lib/node_modules/@stdlib/strided/base/unary/scripts/loops.js b/lib/node_modules/@stdlib/strided/base/unary/scripts/loops.js index 452555820b87..d07c20c36678 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/scripts/loops.js +++ b/lib/node_modules/@stdlib/strided/base/unary/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. @@ -376,6 +376,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 { @@ -393,6 +396,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 { @@ -546,6 +552,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/unary/scripts/templates/docs.txt b/lib/node_modules/@stdlib/strided/base/unary/scripts/templates/docs.txt index 86c6bab04e10..53da7f64fccb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/scripts/templates/docs.txt +++ b/lib/node_modules/@stdlib/strided/base/unary/scripts/templates/docs.txt @@ -1,4 +1,4 @@ -#### stdlib_strided_{{SIGNATURE}}( \*arrays[], \*shape, \*strides, \*fcn ) +#### stdlib_strided_{{SIGNATURE}}( \*arrays\[], \*shape, \*strides, \*fcn ) Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_b.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_b.c index 73e90b799db5..91d1eb8c599b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_b.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_b_as_u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_b_as_u_u.c index 6000fe73d903..c539664c96cb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_b_as_u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_b_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_c.c index 501d4cf9216a..36890a989d5a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_b_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_b_c.c index 314b3cda3299..e6d541cbe0e1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_b_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_c_c.c index 6ae62fc1ab6d..ef7d3d65d593 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_z_z.c index f56a88310202..81f4efd05040 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_d.c index 8a11fea7646a..26904a8c118e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_b_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_b_d.c index cd0506b9b9fa..dcfe53fb8731 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_b_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_d_d.c index 026e713a6191..202436fb9d17 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_f.c index 64b42da0dbd9..6fdb89b37d13 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_b_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_b_f.c index 602ac15ea29e..8ee2b0940c19 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_b_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_d_d.c index f0cfedb52210..49a172820571 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_f_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_f_f.c index 83a02a36f5be..16b550bd75ba 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_f_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_f_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_i.c index 6629376a1ae4..10de861bb412 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_b_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_b_i.c index af6908886a80..3703b44b3e0d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_b_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_i_i.c index 01b7507287f8..563018268eb5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_i_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_k.c index bba1ea256655..38f9ba7bd1f5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_b_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_b_k.c index de3f01f0dbd4..eb0a99f89847 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_b_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_i_i.c index d3578ec9096e..624fbacba51d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_k_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_k_k.c index cc67efdc3355..6767ab5c1b18 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_k_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_k_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_t.c index 644bc6b9bb36..89d5ae3ac814 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_b_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_b_t.c index 51bd850ce7f7..9b4c62cd9d7e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_b_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_t_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_t_t.c index 50b28d139b26..caf20b608fcf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_t_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_u_u.c index b7ae72c47f97..a84aa060535b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_t_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_u.c index 467840feab8f..7c0d152e332f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_b_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_b_u.c index b8385ea7c701..a496b57906c8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_b_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_u_u.c index 138cc9b0b80f..289986e052e4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_u_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_z.c index 51db7c83583d..f6228cdf8aa4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_b_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_b_z.c index 1a332ade2823..597de8bb2310 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_b_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_b_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_z_z.c index 5d25526f32c2..74bcfedc484d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/b_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_c.c index 34ad4a1a8ed3..5a5dde2e227d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_c_as_z_z.c index fdabe7306705..04b8eb152b0b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_f_as_c_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_f_as_c_f.c index 058ece364a3d..100372a17072 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_f_as_c_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_f_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_z.c index d8daabc7102a..a7be1e1d796a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_c_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_c_z.c index a78cffb93b4b..6f328f0cada4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_c_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_z_z.c index a49f4250d021..bf1c0f3c5303 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/c_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/d_d.c index 9cb71301d386..67380532eec1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/d_i_as_d_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/d_i_as_d_i.c index 814ddee9bb6a..27fe09a78aeb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/d_i_as_d_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/d_i_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/d_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/d_z.c index 3f1d671e5d68..0e13ed022346 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/d_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_d_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_d_z.c index 23fcbff07882..fe90cc8efa2c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_d_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_z_z.c index 77f8d20e09a0..07903ef86f79 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/d_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_c.c index f19ff0845ea1..1b895f2f989b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_c_c.c index c57a559c63e2..22dbf471c953 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_f_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_f_c.c index 6084b15b10d5..f31e333e7077 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_f_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_z_z.c index 5c1af616aec8..e7909d99c5c5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_d.c index 292705301d57..d3213b5eb1fe 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_d_d.c index 393b3dd71a13..d764388ee901 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_f_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_f_d.c index dd76bb943083..14aa5d1cdc12 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_f_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_d_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_f.c index f4886d0145ed..e34830aef7b1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_f_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_f_as_d_d.c index ee9a5e82f97d..0b300f0d0d8b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_f_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_f_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_i_as_f_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_i_as_f_i.c index ab3c1340413d..bee6d0386920 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_i_as_f_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_i_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_z.c index 153a26941885..88df84100ef8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_f_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_f_z.c index 17c81dc76eb4..150f34357cbe 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_f_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_z_z.c index 52c7a2ffc948..9546ac74893c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/f_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_d.c index a06f69e94754..1f087e220967 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_d_d.c index 8b02a2f76039..c7f509dc7fec 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_i_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_i_d.c index 52efab085bf6..c169cd270d1b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_i_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_d_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_i.c index 5847617afbbf..eb683886f20d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_u.c index 5c29e1fb7564..5cc8d8ca751c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_z.c index ee99ead59cd8..d6a4e08f46fe 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_i_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_i_z.c index c3d324af9839..42196801c120 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_i_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_z_z.c index 584308671c52..7e11e642d5b5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/i_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_c.c index 7800cd16035f..e521962cfd5d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_c_c.c index cb65c960901c..0e20a29601f8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_k_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_k_c.c index 9aa408dddb24..3fcdac72f4c6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_k_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_z_z.c index 2a55be5478a9..00c423e3b8c5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_d.c index 0f5fcd76ada4..a9c5d7ba69b3 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_d_d.c index 1e8db7844b02..39fa7dc64f73 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_k_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_k_d.c index 97a05dbbe1cd..03b42f52d0e7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_k_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_d_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_f.c index a701655fbe6c..214291ca2b1f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_d_d.c index a6e2890eb880..4b79118f88f9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_f_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_f_f.c index 58bef9e99a61..39e3a766121b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_f_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_k_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_k_f.c index 1ff4d7f9f706..69342cee8da8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_k_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_f_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_i.c index b44182cd8879..9513e2558140 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_i_i.c index 8c6e3df8d25f..e97ea2af7a28 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_k_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_k_i.c index 6dc1fa420ba2..1a79df995d09 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_k_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_i_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_k.c index 386be4915dfa..08441e62efbf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_k_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_k_as_i_i.c index 467b1c59d913..0768d6cb6017 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_k_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_k_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_t.c index ec0534e97006..703dd8e5e27b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_t_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_t_as_i_i.c index 877487d5e2ad..e1f41d1a79ea 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_t_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_t_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_u.c index 5daee9166cad..045a288ccabb 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_u_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_u_as_i_i.c index 44543e2f349c..e6eb8e8571c1 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_u_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_u_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_z.c index 08670e1e3ac3..d6bd2bfadbdf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_k_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_k_z.c index f3e620fc189f..b1ceeba1b097 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_k_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_z_z.c index 70ea32a2d00d..4975e3a08665 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/k_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_b.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_b.c index ae12071ef39a..adbd8b7ac53d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_b.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_c.c index 97d338fc1da3..02147baa4177 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_c_c.c index 11e5ce9d3029..5e717946f691 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_s_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_s_c.c index 7ffef7306bf5..488c968697ba 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_s_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_z_z.c index 3f0bd5894552..469b09c040b8 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_d.c index 373d287942fd..61f6ee3e4a5a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_d_d.c index 1c3403a66984..0eb312790f0b 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_s_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_s_d.c index 75c530907508..5f4c483dd909 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_s_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_d_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_f.c index ce3c9092df53..35bc567fe836 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_d_d.c index 1e0e8ce3e32e..c08f9e07bed7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_f_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_f_f.c index 9def34d3fd09..5fb7e28ca804 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_f_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_s_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_s_f.c index a0dcec4e45bc..9ce43b283f85 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_s_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_f_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_i.c index 27bc7ff8b560..f1ca0f981b3a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_i_i.c index 0efffd0092c7..560c61ef2af5 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_s_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_s_i.c index c26c517061e6..7aa061bfdbd6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_s_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_i_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_k.c index e94a95818255..845ba0179f56 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_i_i.c index c1cf7647a858..eeee601acb8c 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_k_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_k_k.c index c5921f397733..2fbe21146cab 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_k_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_k_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_s_k.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_s_k.c index 1a7a12e926d2..6dc50babffd6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_s_k.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_k_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_s.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_s.c index 77bac252e81e..2f2f49067e4e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_s.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_s_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_s_as_i_i.c index d8ec1b8dd4a0..faf79b1a0816 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_s_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_s_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_t.c index 4d74027152fc..83d567341acd 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_t_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_t_as_i_i.c index e7b9315ed7df..ad36c0a83fc2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_t_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_t_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_u.c index 1f8a1321a9cc..5a939dfee3e6 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_u_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_u_as_i_i.c index 9eb7e6e277e8..a2c6fc8feab0 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_u_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_u_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_z.c index c6749c789ef7..7a9198435f11 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_s_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_s_z.c index 48c5dc294767..8529a5dd6853 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_s_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_s_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_z_z.c index 96cf31241f07..e05bc5a4bb13 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/s_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_c.c index 4fed6a83ed72..f01b5b9b9c4e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_c_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_c_c.c index c975d3a01480..2299cdbd7a6d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_c_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_c_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_t_c.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_t_c.c index af3eaaa63cf2..189e1aaf7444 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_t_c.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_z_z.c index 2007ae1a7572..3dd1a95f0f78 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_c_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_d.c index 31e4a2cf6e55..8c462663cbd2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_d_d.c index 9ed1ee0bba2b..5ba5332a7bec 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_t_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_t_d.c index 33dd383a8849..804b6b75654e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_t_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_d_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_f.c index cb3f42f9e1d2..a5e5a380f55d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_d_d.c index 38098b0bf551..12ea190f4897 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_f_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_f_f.c index eb5530ad751d..2ca95c87f041 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_f_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_f_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_t_f.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_t_f.c index c655fc49af24..5c2d78686a71 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_t_f.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_f_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_i.c index ef7c038dae88..1397fa306791 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_i_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_i_i.c index 372a1fbee5f4..d78fd33f829e 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_i_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_i_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_t_i.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_t_i.c index a49d714945df..220286051332 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_t_i.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_i_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_t.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_t.c index 1cb0b433b8d5..b43bc8d9bcdd 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_t.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_t_as_u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_t_as_u_u.c index 6373c2b4fe29..1993ae23ac03 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_t_as_u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_t_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_u.c index 046f1460e562..f49a6d74a5b4 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_t_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_t_u.c index cda34f1d7ac6..268ecf903014 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_t_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_u_u.c index a6d65089108b..5096cb586e82 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_u_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_z.c index bd046f8523a9..78d73f0a416f 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_t_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_t_z.c index 3751d84de778..11c4958f6dfc 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_t_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_t_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_z_z.c index 1686997b1f80..81e0c482dd33 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/t_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_d.c index 53074889e2d8..8890f47389c0 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_d_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_d_d.c index 29019c9fedf4..39dc618a98bf 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_d_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_d_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_u_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_u_d.c index df2b37826bca..ec65ef1a42fa 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_u_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_d_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_u.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_u.c index f870b36ebb7c..72967b7407b2 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_u.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_z.c index 487909acbed8..fbf03efdb41d 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_u_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_u_z.c index 42c8ac7701ae..22c76bb175d7 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_u_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_u_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_z_z.c index eefbbc034a5a..1afa2bb79bb9 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/u_z_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/x_x.c b/lib/node_modules/@stdlib/strided/base/unary/src/x_x.c new file mode 100644 index 000000000000..c922f00a33f5 --- /dev/null +++ b/lib/node_modules/@stdlib/strided/base/unary/src/x_x.c @@ -0,0 +1,66 @@ +/** +* @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/unary/x_x.h" +#include "stdlib/strided/base/unary/macros.h" +#include +#include + +/** +* Applies a unary callback to strided input array elements and assigns results to elements in a strided output array. +* +* @param arrays array whose first element is a pointer to a strided input array and whose second 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/unary/x_x.h" +* #include +* #include +* +* // Create underlying byte arrays: +* uint8_t x[] = { 0, 0, 0 }; +* uint8_t out[] = { 0, 0, 0 }; +* +* // Define a pointer to an array containing pointers to strided arrays: +* uint8_t *arrays[] = { x, out }; +* +* // Define the strides: +* int64_t strides[] = { 1, 1 }; +* +* // Define the number of elements over which to iterate: +* int64_t shape[] = { 3 }; +* +* // Define a callback: +* static bool fcn( bool x ) { +* return x; +* } +* +* // Apply the callback: +* stdlib_strided_x_x( arrays, shape, strides, (void *)fcn ); +*/ +void stdlib_strided_x_x( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { + typedef bool func_type( const bool x ); + func_type *f = (func_type *)fcn; + STDLIB_STRIDED_UNARY_LOOP_CLBK( bool, bool ) +} diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/z_d_as_z_d.c b/lib/node_modules/@stdlib/strided/base/unary/src/z_d_as_z_d.c index a6b0b00af746..4520beb46a42 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/z_d_as_z_d.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/z_d_as_z_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. diff --git a/lib/node_modules/@stdlib/strided/base/unary/src/z_z.c b/lib/node_modules/@stdlib/strided/base/unary/src/z_z.c index 778d2d44da06..3ad367d4532a 100644 --- a/lib/node_modules/@stdlib/strided/base/unary/src/z_z.c +++ b/lib/node_modules/@stdlib/strided/base/unary/src/z_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.