Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 3, 2023
1 parent b3d0d68 commit 0830e3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

4 changes: 2 additions & 2 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ interface Routine {
* var v = dnannsumkbn2( x.length, x, 1, out, 1 );
* // returns <Float64Array>[ 1.0, 3 ]
*/
( N: number, x: Float64Array, strideX: number, out: Float64Array, strideOut: number ): Float64Array; // tslint:disable-line:max-line-length
( N: number, x: Float64Array, strideX: number, out: Float64Array, strideOut: number ): Float64Array;

/**
* Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm and alternative indexing semantics.
Expand All @@ -64,7 +64,7 @@ interface Routine {
* var v = dnannsumkbn2( x.length, x, 1, 0, out, 1, 0 );
* // returns <Float64Array>[ 1.0, 3 ]
*/
ndarray( N: number, x: Float64Array, strideX: number, offsetX: number, out: Float64Array, strideOut: number, offsetOut: number ): Float64Array; // tslint:disable-line:max-line-length
ndarray( N: number, x: Float64Array, strideX: number, offsetX: number, out: Float64Array, strideOut: number, offsetOut: number ): Float64Array;
}

/**
Expand Down

0 comments on commit 0830e3e

Please sign in to comment.