Skip to content

Commit 7bae5d5

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents a87dccb + bb09b18 commit 7bae5d5

File tree

322 files changed

+12091
-357
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+12091
-357
lines changed

lib/node_modules/@stdlib/array/fixed-endian-factory/lib/main.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
554554
/**
555555
* Tests whether all elements in an array pass a test implemented by a predicate function.
556556
*
557+
* @private
557558
* @name every
558559
* @memberof TypedArray.prototype
559560
* @type {Function}
@@ -585,6 +586,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
585586
/**
586587
* Returns a new array containing the elements of an array which pass a test implemented by a predicate function.
587588
*
589+
* @private
588590
* @name filter
589591
* @memberof TypedArray.prototype
590592
* @type {Function}
@@ -620,6 +622,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
620622
/**
621623
* Invokes a function once for each array element.
622624
*
625+
* @private
623626
* @name forEach
624627
* @memberof TypedArray.prototype
625628
* @type {Function}
@@ -798,7 +801,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
798801
* @memberof TypedArray.prototype
799802
* @type {Function}
800803
* @param {*} searchElement - element to search for
801-
* @param {integer} fromIndex - starting index (inclusive)
804+
* @param {integer} [fromIndex] - starting index (inclusive)
802805
* @throws {TypeError} `this` must be a typed array instance
803806
* @throws {TypeError} second argument must be an integer
804807
* @returns {integer} index or -1
@@ -882,6 +885,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
882885
/**
883886
* Applies a provided callback function to each element of the array, in order, passing in the return value from the calculation on the preceding element and returning the accumulated result upon completion.
884887
*
888+
* @private
885889
* @name reduce
886890
* @memberof TypedArray.prototype
887891
* @type {Function}
@@ -924,6 +928,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
924928
/**
925929
* Applies a provided callback function to each element of the array, in reverse order, passing in the return value from the calculation on the following element and returning the accumulated result upon completion.
926930
*
931+
* @private
927932
* @name reduceRight
928933
* @memberof TypedArray.prototype
929934
* @type {Function}
@@ -1061,6 +1066,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
10611066
/**
10621067
* Tests whether at least one element in the typed array passes a test implemented by a predicate function.
10631068
*
1069+
* @private
10641070
* @name some
10651071
* @memberof TypedArray.prototype
10661072
* @type {Function}
@@ -1117,6 +1123,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
11171123
/**
11181124
* Returns a new typed array with the element at a provided index replaced with a provided value.
11191125
*
1126+
* @private
11201127
* @name with
11211128
* @memberof TypedArray.prototype
11221129
* @type {Function}

lib/node_modules/@stdlib/assert/is-complex-like/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ bool = isComplexLike( x );
5959
<!-- /.usage -->
6060

6161
<section class="notes">
62-
62+
6363
## Notes
6464

6565
- A complex number-like `object` is defined as an `object` having the following properties assigned to numeric values:

lib/node_modules/@stdlib/blas/base/dcabs1/lib/native.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' );
2828
/**
2929
* Computes the sum of the absolute value of the real and imaginary part of a double-precision complex floating-point number.
3030
*
31+
* @private
3132
* @param {Complex128} z - complex number
3233
* @returns {number} result
3334
*

lib/node_modules/@stdlib/blas/ext/base/dapx/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,13 @@ int main( void ) {
240240

241241
// Specify the number of indexed elements:
242242
const int N = 8;
243-
243+
244244
// Specify a stride:
245245
const int strideX = 1;
246-
246+
247247
// Fill the array:
248248
c_dapx( N, 5.0, x, strideX );
249-
249+
250250
// Print the result:
251251
for ( int i = 0; i < 8; i++ ) {
252252
printf( "x[ %i ] = %lf\n", i, x[ i ] );

lib/node_modules/@stdlib/blas/ext/base/dapxsumors/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,13 @@ int main( void ) {
246246

247247
// Specify the number of indexed elements:
248248
const int N = 8;
249-
249+
250250
// Specify a stride:
251251
const int strideX = 1;
252-
252+
253253
// Compute the sum:
254254
double v = stdlib_strided_dapxsumors( N, 5.0, x, strideX );
255-
255+
256256
// Print the result:
257257
printf( "Sum: %lf\n", sum );
258258
}

lib/node_modules/@stdlib/blas/ext/base/dcusumkbn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @param Y output array
4040
* @param strideY Y stride length
4141
*/
42-
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ){
42+
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ) {
4343
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
4444
const CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
4545
API_SUFFIX(stdlib_strided_dcusumkbn_ndarray)( N, sum, X, strideX, ox, Y, strideY, oy );

lib/node_modules/@stdlib/blas/ext/base/snansum/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Add-on namespace.
3030
*/
31-
static napi_value addon( napi_env env, napi_callback_info info ){
31+
static napi_value addon( napi_env env, napi_callback_info info ) {
3232
STDLIB_NAPI_ARGV( env, info, argv, argc, 3 );
3333
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
3434
STDLIB_NAPI_ARGV_INT64( env, stride, argv, 2 );

lib/node_modules/@stdlib/fs/resolve-parent-paths/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The function accepts the following `options`:
5858
- `some`: return one or more paths resolved within the first directory level containing a match.
5959
- `all`: return all resolved paths within the first directory level containing matches for all provided paths.
6060
- `each`: independently return the first resolved path for each path at any directory level.
61-
61+
6262
Default: `'all'`.
6363

6464
By default, the function begins walking from the current working directory. To specify an alternative directory, set the `dir` option.

lib/node_modules/@stdlib/iter/cuany-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ while ( true ) {
186186
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
187187

188188
<section class="related">
189-
189+
190190
</section>
191191

192192
<!-- /.related -->

lib/node_modules/@stdlib/iter/cuevery-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ while ( true ) {
186186
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
187187

188188
<section class="related">
189-
189+
190190
</section>
191191

192192
<!-- /.related -->

0 commit comments

Comments
 (0)