Skip to content

Commit e424d4e

Browse files
committed
Auto-generated commit
1 parent b6223fa commit e424d4e

2 files changed

Lines changed: 88 additions & 2 deletions

File tree

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 (2025-06-12)
7+
## Unreleased (2025-06-13)
88

99
<section class="features">
1010

@@ -499,6 +499,7 @@ A total of 46 issues were closed in this release:
499499

500500
<details>
501501

502+
- [`b2cf286`](https://github.com/stdlib-js/stdlib/commit/b2cf28636042c807067cbd86d92b0eae4dd5a4f0) - **chore:** add structured package data _(by Karan Anand)_
502503
- [`a2cfe0e`](https://github.com/stdlib-js/stdlib/commit/a2cfe0e3fe5167301372d22dbae8e8b19917f77c) - **test:** update test messages according to current project conventions _(by Karan Anand)_
503504
- [`c5ccaff`](https://github.com/stdlib-js/stdlib/commit/c5ccaff1e7697684168c649fd87882b259664c73) - **test:** remove the use of `IS_BROWSER` from test files _(by Karan Anand)_
504505
- [`7bb31ea`](https://github.com/stdlib-js/stdlib/commit/7bb31ea0bb5ffce51b472c32e2867396e92f406a) - **docs:** update related packages sections [(#7328)](https://github.com/stdlib-js/stdlib/pull/7328) _(by stdlib-bot, Athan Reines)_

base/special/coversinf/package.json

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,90 @@
7171
"trigonometry",
7272
"radians",
7373
"angle"
74-
]
74+
],
75+
"__stdlib__": {
76+
"scaffold": {
77+
"$schema": "math/base@v1.0",
78+
"base_alias": "coversin",
79+
"alias": "coversinf",
80+
"pkg_desc": "compute the coversed sine of a single-precision floating-point number (in radians)",
81+
"desc": "computes the coversed sine of a single-precision floating-point number (in radians)",
82+
"short_desc": "coversed sine",
83+
"parameters": [
84+
{
85+
"name": "x",
86+
"desc": "input value (in radians)",
87+
"type": {
88+
"javascript": "number",
89+
"jsdoc": "number",
90+
"c": "float",
91+
"dtype": "float32"
92+
},
93+
"domain": [
94+
{
95+
"min": "-infinity",
96+
"max": "infinity"
97+
}
98+
],
99+
"rand": {
100+
"prng": "random/base/uniform",
101+
"parameters": [
102+
-10,
103+
10
104+
]
105+
},
106+
"example_values": [
107+
64,
108+
27,
109+
0,
110+
0.1,
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": "coversed sine",
133+
"type": {
134+
"javascript": "number",
135+
"jsdoc": "number",
136+
"c": "float",
137+
"dtype": "float32"
138+
}
139+
},
140+
"keywords": [
141+
"coversin",
142+
"coversinf",
143+
"coversine",
144+
"coversed",
145+
"coversinus",
146+
"covers",
147+
"cosiv",
148+
"cvs",
149+
"versed",
150+
"sine",
151+
"sin",
152+
"trig",
153+
"trigonometry",
154+
"radians",
155+
"angle"
156+
],
157+
"extra_keywords": []
158+
}
159+
}
75160
}

0 commit comments

Comments
 (0)