Skip to content

Commit f6daf0c

Browse files
committed
Auto-generated commit
1 parent 923243c commit f6daf0c

File tree

2 files changed

+84
-2
lines changed

2 files changed

+84
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-01)
7+
## Unreleased (2026-01-02)
88

99
<section class="features">
1010

@@ -712,6 +712,7 @@ A total of 79 issues were closed in this release:
712712

713713
<details>
714714

715+
- [`3ae6e96`](https://github.com/stdlib-js/stdlib/commit/3ae6e9691bbab7f2162ef8bb5e3279aefd517e47) - **chore:** add structured meta data _(by Athan Reines)_
715716
- [`ea8228b`](https://github.com/stdlib-js/stdlib/commit/ea8228b082c03c6c8c8182d237c709ae279c05d2) - **feat:** add `math/base/special/acoshf` [(#5812)](https://github.com/stdlib-js/stdlib/pull/5812) _(by Prashant Kumar Yadav, Karan Anand, Nakul Krishnakumar, stdlib-bot)_
716717
- [`6b009d1`](https://github.com/stdlib-js/stdlib/commit/6b009d1d435f278d0c9bed8294f000e4a6d67490) - **test:** use correct variable name in `math/base/special/atanf` test _(by Philipp Burckhardt)_
717718
- [`a55e19f`](https://github.com/stdlib-js/stdlib/commit/a55e19f3343b4a34486a5c109805bbc52e4dbb16) - **test:** replace t.true with t.strictEqual so tests actually check main export _(by Philipp Burckhardt)_

base/special/acoshf/package.json

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,86 @@
7171
"angle",
7272
"polyfill",
7373
"ponyfill"
74-
]
74+
],
75+
"__stdlib__": {
76+
"scaffold": {
77+
"$schema": "math/[email protected]",
78+
"base_alias": "acosh",
79+
"alias": "acoshf",
80+
"pkg_desc": "compute the hyperbolic arccosine of a single-precision floating-point number",
81+
"desc": "computes the hyperbolic arccosine of a single-precision floating-point number",
82+
"short_desc": "hyperbolic arccosine",
83+
"parameters": [
84+
{
85+
"name": "x",
86+
"desc": "input value",
87+
"type": {
88+
"javascript": "number",
89+
"jsdoc": "number",
90+
"c": "float",
91+
"dtype": "float32"
92+
},
93+
"domain": [
94+
{
95+
"min": 1,
96+
"max": "infinity"
97+
}
98+
],
99+
"rand": {
100+
"prng": "random/base/uniform",
101+
"parameters": [
102+
1,
103+
10
104+
]
105+
},
106+
"example_values": [
107+
64,
108+
27,
109+
1.1,
110+
6.5,
111+
9,
112+
8,
113+
1,
114+
125,
115+
10.2,
116+
11.3,
117+
12.4,
118+
3.5,
119+
1.6,
120+
15.7,
121+
16,
122+
17.9,
123+
188,
124+
19.11,
125+
200,
126+
21.15
127+
]
128+
}
129+
],
130+
"output_policy": "real_floating_point_and_generic",
131+
"returns": {
132+
"desc": "hyperbolic arccosine",
133+
"type": {
134+
"javascript": "number",
135+
"jsdoc": "number",
136+
"c": "float",
137+
"dtype": "float32"
138+
}
139+
},
140+
"keywords": [
141+
"acosh",
142+
"hyperbolic",
143+
"inverse",
144+
"cosine",
145+
"cos",
146+
"arc",
147+
"arccosine",
148+
"trig",
149+
"trigonometry"
150+
],
151+
"extra_keywords": [
152+
"math.acosh"
153+
]
154+
}
155+
}
75156
}

0 commit comments

Comments
 (0)