Skip to content

Commit af16582

Browse files
committed
Auto-generated commit
1 parent 0f37030 commit af16582

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`83da5c1`](https://github.com/stdlib-js/stdlib/commit/83da5c17c4a6d5f0dcfaf905e0612961a11d92db) - add `acotdf` to namespace
1314
- [`69c0f30`](https://github.com/stdlib-js/stdlib/commit/69c0f3039c61db8c47af5f4d8300bb219c4e94fc) - add `acosdf` to namespace
1415
- [`385d970`](https://github.com/stdlib-js/stdlib/commit/385d970dc8415b814c9ce66a96359c2ad508b94a) - add `cinvf` to namespace
1516
- [`e99f5d4`](https://github.com/stdlib-js/stdlib/commit/e99f5d409cbc2023da4324afc1ec08680781a2ea) - add `math/base/special/cinvf` [(#7007)](https://github.com/stdlib-js/stdlib/pull/7007)
@@ -483,6 +484,7 @@ A total of 46 issues were closed in this release:
483484

484485
<details>
485486

487+
- [`83da5c1`](https://github.com/stdlib-js/stdlib/commit/83da5c17c4a6d5f0dcfaf905e0612961a11d92db) - **feat:** add `acotdf` to namespace _(by Athan Reines)_
486488
- [`69c0f30`](https://github.com/stdlib-js/stdlib/commit/69c0f3039c61db8c47af5f4d8300bb219c4e94fc) - **feat:** add `acosdf` to namespace _(by Athan Reines)_
487489
- [`385d970`](https://github.com/stdlib-js/stdlib/commit/385d970dc8415b814c9ce66a96359c2ad508b94a) - **feat:** add `cinvf` to namespace _(by Athan Reines)_
488490
- [`e99f5d4`](https://github.com/stdlib-js/stdlib/commit/e99f5d409cbc2023da4324afc1ec08680781a2ea) - **feat:** add `math/base/special/cinvf` [(#7007)](https://github.com/stdlib-js/stdlib/pull/7007) _(by Karan Anand, Athan Reines, stdlib-bot)_

base/special/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,15 @@ setReadOnly( special, 'acot', require( './../../../base/special/acot' ) );
135135
*/
136136
setReadOnly( special, 'acotd', require( './../../../base/special/acotd' ) );
137137

138+
/**
139+
* @name acotdf
140+
* @memberof special
141+
* @readonly
142+
* @type {Function}
143+
* @see {@link module:@stdlib/math/base/special/acotdf}
144+
*/
145+
setReadOnly( special, 'acotdf', require( './../../../base/special/acotdf' ) );
146+
138147
/**
139148
* @name acotf
140149
* @memberof special

0 commit comments

Comments
 (0)