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 65abdee commit 3bde1f7
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 {
* dfloor( x.length, x, 1, y, 1 );
* // y => <Float64Array>[ -2.0, 1.0, 3.0, 4.0, 5.0 ]
*/
( N: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array; // tslint:disable-line:max-line-length
( N: number, x: Float64Array, strideX: number, y: Float64Array, strideY: number ): Float64Array;

/**
* Rounds each element in a double-precision floating-point strided array `x` toward negative infinity and assigns the results to elements in a double-precision floating-point strided array `y` using alternative indexing semantics.
Expand All @@ -64,7 +64,7 @@ interface Routine {
* dfloor.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float64Array>[ -2.0, 1.0, 3.0, 4.0, 5.0 ]
*/
ndarray( N: number, x: Float64Array, strideX: number, offsetX: number, y: Float64Array, strideY: number, offsetY: number ): Float64Array; // tslint:disable-line:max-line-length
ndarray( N: number, x: Float64Array, strideX: number, offsetX: number, y: Float64Array, strideY: number, offsetY: number ): Float64Array;
}

/**
Expand Down

0 comments on commit 3bde1f7

Please sign in to comment.