Skip to content

Commit b2cf286

Browse files
committed
chore: add structured package data
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent a2cfe0e commit b2cf286

File tree

1 file changed

+86
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/coversinf

1 file changed

+86
-1
lines changed

lib/node_modules/@stdlib/math/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/[email protected]",
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)