Skip to content

Commit

Permalink
feat: update namespace TypeScript declarations
Browse files Browse the repository at this point in the history
Signed-off-by: stdlib-bot <[email protected]>
  • Loading branch information
Planeshifter authored and stdlib-bot committed Jan 15, 2025
1 parent b00d9f1 commit 53b07dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2361,12 +2361,12 @@ interface Namespace {
sapxsumkbn2: typeof sapxsumkbn2;

/**
* Adds a constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
* Adds a scalar constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
*
* @param N - number of indexed elements
* @param alpha - constant
* @param alpha - scalar constant
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,13 @@ interface Namespace {
*
* @example
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
*
* var bool = ns.signbitf( toFloat32( 4.0 ) );
* // returns false
*
* @example
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
*
* var bool = ns.signbitf( toFloat32( -9.14e-34 ) );
* // returns true
*
Expand Down

0 comments on commit 53b07dc

Please sign in to comment.