Skip to content

Commit 52f00a5

Browse files
committed
chore: add structured package data for math/base/special/rcbrt
--- 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 c8faa25 commit 52f00a5

File tree

1 file changed

+77
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/rcbrt

1 file changed

+77
-1
lines changed

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

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,81 @@
6565
"number",
6666
"reciprocal",
6767
"inverse"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "rcbrt",
73+
"alias": "rcbrt",
74+
"pkg_desc": "compute the reciprocal cube root of a double-precision floating-point number",
75+
"desc": "computes the reciprocal cube root of a double-precision floating-point number",
76+
"short_desc": "reciprocal cube root",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "double",
85+
"dtype": "float64"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": "infinity"
91+
}
92+
],
93+
"rand": {
94+
"prng": "random/base/uniform",
95+
"parameters": [
96+
-100,
97+
100
98+
]
99+
},
100+
"example_values": [
101+
-100,
102+
-64,
103+
-27,
104+
-8,
105+
-1,
106+
-0.5,
107+
-0.125,
108+
-0.01,
109+
0.01,
110+
0.125,
111+
0.5,
112+
1,
113+
2,
114+
3,
115+
4,
116+
8,
117+
27,
118+
64,
119+
81,
120+
100
121+
]
122+
}
123+
],
124+
"returns": {
125+
"desc": "reciprocal cube root",
126+
"type": {
127+
"javascript": "number",
128+
"jsdoc": "number",
129+
"c": "double",
130+
"dtype": "float64"
131+
}
132+
},
133+
"keywords": [
134+
"cube",
135+
"root",
136+
"cbrt",
137+
"cubic",
138+
"power"
139+
],
140+
"extra_keywords": [
141+
"math.cbrt"
142+
]
143+
}
144+
}
69145
}

0 commit comments

Comments
 (0)