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 Jul 18, 2024
1 parent bd3230c commit f8cffaa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,7 @@ This release closes the following issue:

##### Features

- [`81b48ae`](https://github.com/stdlib-js/stdlib/commit/81b48aeb9d5d2b16fe039f9db7e710c95a35585f) - update namespace TypeScript declarations [(##2621)](#2621)
- [`09618b7`](https://github.com/stdlib-js/stdlib/commit/09618b7064d674d3e4afd1f67d877b1388098784) - update namespace TypeScript declarations
- [`44d752e`](https://github.com/stdlib-js/stdlib/commit/44d752efc62e7aa8cd05690a117c58de029aafc8) - add new special functions to `math/base/special` namespace

Expand Down Expand Up @@ -5288,6 +5289,7 @@ A total of 29 people contributed to this release. Thank you to the following con

<details>

- [`81b48ae`](https://github.com/stdlib-js/stdlib/commit/81b48aeb9d5d2b16fe039f9db7e710c95a35585f) - **feat:** update namespace TypeScript declarations [(##2621)](#2621) _(by stdlib-bot, Philipp Burckhardt)_
- [`691e774`](https://github.com/stdlib-js/stdlib/commit/691e774930ab3d983998e53ad16dbf4bd5eb0c76) - **refactor:** make base parameter compulsory in `math/base/special/floorsd` [(##2617)](#2617) _(by Gunj Joshi)_
- [`dcb1b32`](https://github.com/stdlib-js/stdlib/commit/dcb1b32226e846c8c5219507bc30dce3bbcf19d2) - **feat:** add C implementation for `math/base/special/floorb` [(##2620)](#2620) _(by Gunj Joshi)_
- [`cc98b20`](https://github.com/stdlib-js/stdlib/commit/cc98b20ab91590c526896d547e447f107fc714aa) - **feat:** add C implementation for `math/base/special/factorial` [(##2618)](#2618 ) _(by Gunj Joshi)_
Expand Down
20 changes: 10 additions & 10 deletions base/special/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2029,8 +2029,8 @@ interface Namespace {
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
* var real = require( '@stdlib/complex/float32/real' );
* var imag = require( '@stdlib/complex/float32/imag' );
*
* var v = ns.cceilf( new Complex64( -1.5, 2.5 ) );
* // returns <Complex64>
Expand Down Expand Up @@ -2346,8 +2346,8 @@ interface Namespace {
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
* var real = require( '@stdlib/complex/float32/real' );
* var imag = require( '@stdlib/complex/float32/imag' );
*
* var v = ns.cflipsignf( new Complex64( -4.0, 5.0 ), -55.0 );
* // returns <Complex64>
Expand Down Expand Up @@ -2435,8 +2435,8 @@ interface Namespace {
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
* var real = require( '@stdlib/complex/float32/real' );
* var imag = require( '@stdlib/complex/float32/imag' );
*
* var v = ns.cidentityf( new Complex64( -1.0, 2.0 ) );
* // returns <Complex64>
Expand Down Expand Up @@ -4005,19 +4005,19 @@ interface Namespace {
*
* @param x - input value
* @param n - number of significant figures
* @param b - base (default: 10)
* @param b - base
* @returns rounded value
*
* @example
* var v = ns.floorsd( 3.141592653589793, 5 );
* var v = ns.floorsd( 3.141592653589793, 5, 10 );
* // returns 3.1415
*
* @example
* var v = ns.floorsd( 3.141592653589793, 1 );
* var v = ns.floorsd( 3.141592653589793, 1, 10 );
* // returns 3.0
*
* @example
* var v = ns.floorsd( 12368.0, 2 );
* var v = ns.floorsd( 12368.0, 2, 10 );
* // returns 12000.0
*
* @example
Expand Down

0 comments on commit f8cffaa

Please sign in to comment.