Skip to content

Commit 0f0ea32

Browse files
committed
chore: add structured package data for math/base/special/tanf
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ad8f246 commit 0f0ea32

File tree

1 file changed

+67
-1
lines changed

1 file changed

+67
-1
lines changed

lib/node_modules/@stdlib/math/base/special/tanf/package.json

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,71 @@
6868
"trigonometry",
6969
"value",
7070
"number"
71-
]
71+
],
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/[email protected]",
75+
"base_alias": "tanf",
76+
"alias": "tanf",
77+
"pkg_desc": "Evaluate the tangent of a single-precision floating-point number (in radians).",
78+
"desc": "Computes the tangent of a single-precision floating-point number",
79+
"short_desc": "tangent",
80+
"parameters": [
81+
{
82+
"name": "x",
83+
"desc": "input value (in radians)",
84+
"type": {
85+
"javascript": "number",
86+
"jsdoc": "number",
87+
"c": "float",
88+
"dtype": "float32"
89+
},
90+
"domain": [
91+
{
92+
"min": "-infinity",
93+
"max": "infinity"
94+
}
95+
],
96+
"rand": {
97+
"prng": "random/base/uniform",
98+
"parameters": [
99+
-1.5708,
100+
1.5708
101+
]
102+
},
103+
"example_values": [
104+
0.0,
105+
-0.7854,
106+
0.7854,
107+
0.5236,
108+
1.0472,
109+
-1.0472,
110+
1.5708,
111+
-1.5708
112+
]
113+
}
114+
],
115+
"output_policy": "real_floating_point_and_generic",
116+
"returns": {
117+
"desc": "tangent",
118+
"type": {
119+
"javascript": "number",
120+
"jsdoc": "number",
121+
"c": "float",
122+
"dtype": "float32"
123+
}
124+
},
125+
"keywords": [
126+
"tan",
127+
"tangent",
128+
"trig",
129+
"trigonometry",
130+
"radians",
131+
"float32"
132+
],
133+
"extra_keywords": [
134+
"math.tanf"
135+
]
136+
}
137+
}
72138
}

0 commit comments

Comments
 (0)