Skip to content

Commit b39dcbd

Browse files
committed
chore: add structured package data for math/base/special/tandf
--- 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 c3d8bd8 commit b39dcbd

File tree

1 file changed

+67
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/tandf

1 file changed

+67
-1
lines changed

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

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

0 commit comments

Comments
 (0)