Skip to content

Commit c3d8bd8

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

File tree

1 file changed

+75
-1
lines changed

1 file changed

+75
-1
lines changed

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

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,79 @@
6868
"cosine",
6969
"trig",
7070
"trigonometry"
71-
]
71+
],
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/[email protected]",
75+
"base_alias": "tand",
76+
"alias": "tand",
77+
"pkg_desc": "compute the tangent of an angle measured in degrees",
78+
"desc": "compute the tangent of an angle measured in degrees",
79+
"short_desc": "tangent in degrees",
80+
"parameters": [
81+
{
82+
"name": "x",
83+
"desc": "input value (in degrees)",
84+
"type": {
85+
"javascript": "number",
86+
"jsdoc": "number",
87+
"c": "double",
88+
"dtype": "float64"
89+
},
90+
"domain": [
91+
{
92+
"min": "-infinity",
93+
"max": "infinity"
94+
}
95+
],
96+
"rand": {
97+
"prng": "random/base/uniform",
98+
"parameters": [
99+
-180,
100+
180
101+
]
102+
},
103+
"example_values": [
104+
0,
105+
30,
106+
45,
107+
60,
108+
90,
109+
120,
110+
135,
111+
150,
112+
180,
113+
-30,
114+
-45,
115+
-60,
116+
-90,
117+
-120,
118+
-135,
119+
-150,
120+
-180
121+
]
122+
}
123+
],
124+
"output_policy": "real_floating_point_and_generic",
125+
"returns": {
126+
"desc": "tangent of the input angle in degrees",
127+
"type": {
128+
"javascript": "number",
129+
"jsdoc": "number",
130+
"c": "double",
131+
"dtype": "float64"
132+
}
133+
},
134+
"keywords": [
135+
"tand",
136+
"tangent",
137+
"trig",
138+
"trigonometry",
139+
"degrees"
140+
],
141+
"extra_keywords": [
142+
"math.tand"
143+
]
144+
}
145+
}
72146
}

0 commit comments

Comments
 (0)