Skip to content

Commit 6cf0286

Browse files
committed
chore: add structured package data for math/base/special/bernoullif
--- 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 53a4c55 commit 6cf0286

File tree

1 file changed

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

1 file changed

+67
-1
lines changed

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

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,71 @@
6161
"bernoulli",
6262
"bernoullif",
6363
"number"
64-
]
64+
],
65+
"__stdlib__": {
66+
"scaffold": {
67+
"$schema": "math/[email protected]",
68+
"base_alias": "bernoulli",
69+
"alias": "bernoullif",
70+
"pkg_desc": "compute the nth Bernoulli number as a single-precision floating-point number ",
71+
"desc": "computes the nth Bernoulli number as a single-precision floating-point number",
72+
"short_desc": "Bernoulli number",
73+
"parameters": [
74+
{
75+
"name": "n",
76+
"desc": "input value",
77+
"type": {
78+
"javascript": "number",
79+
"jsdoc": "number",
80+
"c": "float",
81+
"dtype": "float32"
82+
},
83+
"domain": [
84+
{
85+
"min": 0,
86+
"max": "infinity"
87+
}
88+
],
89+
"rand": {
90+
"prng": "random/base/discrete-uniform",
91+
"parameters": [
92+
0,
93+
30
94+
]
95+
},
96+
"example_values": [
97+
0,
98+
1,
99+
2,
100+
3,
101+
4,
102+
5,
103+
6,
104+
10,
105+
20,
106+
15,
107+
18,
108+
25,
109+
21,
110+
22
111+
]
112+
}
113+
],
114+
"output_policy": "real_floating_point_and_generic",
115+
"returns": {
116+
"desc": "function value",
117+
"type": {
118+
"javascript": "number",
119+
"jsdoc": "number",
120+
"c": "float",
121+
"dtype": "float32"
122+
}
123+
},
124+
"keywords": [
125+
"bernoulli",
126+
"bernoullif"
127+
],
128+
"extra_keywords": []
129+
}
130+
}
65131
}

0 commit comments

Comments
 (0)