Skip to content

Commit d6047cb

Browse files
committed
Auto-generated commit
1 parent 03a7bf4 commit d6047cb

16 files changed

Lines changed: 556 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-07-14)
7+
## Unreleased (2024-07-15)
88

99
<section class="packages">
1010

@@ -739,6 +739,8 @@ A total of 4 people contributed to this release. Thank you to the following cont
739739

740740
<details>
741741

742+
- [`9abdead`](https://github.com/stdlib-js/stdlib/commit/9abdead65457225ccbf44f4bab8caf96167a71c5) - **test:** add tests for three-dimensional arrays [(#2599)](https://github.com/stdlib-js/stdlib/pull/2599) _(by Muhammad Haris, Athan Reines)_
743+
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
742744
- [`d06165b`](https://github.com/stdlib-js/stdlib/commit/d06165bd6c491b4ad19bc2577be76cff083eda98) - **feat:** add support for extending data type kind subsets with a \"generic\" data type _(by Athan Reines)_
743745
- [`6ea880c`](https://github.com/stdlib-js/stdlib/commit/6ea880ccabbf770cf13a2def4f9ce806daa2b2f6) - **feat:** add boolean dtype support to `ndarray/base/assign` [(#2598)](https://github.com/stdlib-js/stdlib/pull/2598) _(by Jaysukh Makvana, Athan Reines)_
744746
- [`903c51c`](https://github.com/stdlib-js/stdlib/commit/903c51c7d0a06d9186a6f2be1b01fa25f770a3eb) - **test:** add tests to `@stdlib/ndarray/base/nullary` [(#2350)](https://github.com/stdlib-js/stdlib/pull/2350) _(by Muhammad Haris, Athan Reines)_

base/assign/src/dispatch.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
*
3232
* - If able to successfully assign elements, the function returns `0`; otherwise, the function returns an error code.
3333
*
34-
* @private
3534
* @param f unary ndarray function
3635
* @param x1 input ndarray
3736
* @param x2 output ndarray
@@ -93,7 +92,6 @@ static int8_t stdlib_ndarray_unary_assign_1d_squeeze( const ndarrayUnaryAssignFc
9392
*
9493
* - If able to successfully apply a unary callback, the function returns `0`; otherwise, the function returns an error code.
9594
*
96-
* @private
9795
* @param f unary ndarray function
9896
* @param N number of elements
9997
* @param x1 input ndarray

base/assign/src/internal/permute.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
/**
2323
* Permutes an input array according to a provided index array.
2424
*
25-
* @private
2625
* @param n number of elements to permute
2726
* @param arr input array
2827
* @param idx permutation indices

base/assign/src/internal/range.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
/**
2323
* Writes `n` evenly spaced values from `0` to `n-1` to an output array.
2424
*
25-
* @private
2625
* @param n number of values to write
2726
* @param out output array
2827
*/

base/assign/src/internal/sort2ins.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* - The algorithm is **stable**, meaning that the algorithm does **not** change the order of array elements which are equal or equivalent.
3131
* - The input arrays are sorted in-place (i.e., the input arrays are mutated).
3232
*
33-
* @private
3433
* @param n number of elements
3534
* @param x first array
3635
* @param y second array

base/function-object/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* - The function assumes that the number of indexed elements in `Y` equals the number of columns in `X`.
3131
* - The function returns a row index. To convert to a linear index, multiply `strideX1` by the return value.
3232
*
33-
* @private
3433
* @param N number of rows in `X` (size of first dimension)
3534
* @param M number of columns in `X` (size of second dimension)
3635
* @param X input two-dimensional reference array

base/napi/addon-arguments/src/addon.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
/**
2626
* Receives JavaScript callback invocation data.
2727
*
28-
* @private
2928
* @param env environment under which the function is invoked
3029
* @param info callback data
3130
* @return Node-API value
@@ -82,7 +81,6 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
8281
/**
8382
* Initializes a Node-API module.
8483
*
85-
* @private
8684
* @param env environment under which the function is invoked
8785
* @param exports exports object
8886
* @return main export

base/nullary/src/dispatch.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
*
3232
* - If able to successfully apply a nullary callback, the function returns `0`; otherwise, the function returns an error code.
3333
*
34-
* @private
3534
* @param f nullary ndarray function
3635
* @param x1 output ndarray
3736
* @param i index of the non-singleton dimension
@@ -75,7 +74,6 @@ static int8_t stdlib_ndarray_nullary_1d_squeeze( const ndarrayNullaryFcn f, stru
7574
*
7675
* - If able to successfully apply a nullary callback, the function returns `0`; otherwise, the function returns an error code.
7776
*
78-
* @private
7977
* @param f nullary ndarray function
8078
* @param N number of elements
8179
* @param x1 output ndarray

base/nullary/src/internal/permute.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
/**
2323
* Permutes an input array according to a provided index array.
2424
*
25-
* @private
2625
* @param n number of elements to permute
2726
* @param arr input array
2827
* @param idx permutation indices

base/nullary/src/internal/range.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
/**
2323
* Writes `n` evenly spaced values from `0` to `n-1` to an output array.
2424
*
25-
* @private
2625
* @param n number of values to write
2726
* @param out output array
2827
*/

0 commit comments

Comments
 (0)