Skip to content

Commit 1179706

Browse files
committed
chore: add structured package data for math/base/special/spencef
--- 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 af5f5cc commit 1179706

File tree

1 file changed

+79
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/spencef

1 file changed

+79
-1
lines changed

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

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,83 @@
6565
"spence",
6666
"spencef",
6767
"number"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "spence",
73+
"alias": "spencef",
74+
"pkg_desc": "spence's function (the dilogarithm) for a single-precision floating-point number",
75+
"desc": "evaluates Spence's function (the dilogarithm) for a single-precision floating-point number.",
76+
"short_desc": "Spence's function",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "float",
85+
"dtype": "float32"
86+
},
87+
"domain": [
88+
{
89+
"min": "0",
90+
"max": "infinity"
91+
}
92+
],
93+
"rand": {
94+
"prng": "random/base/uniform",
95+
"parameters": [
96+
0,
97+
10
98+
]
99+
},
100+
"example_values": [
101+
0,
102+
0.5,
103+
1,
104+
2,
105+
3,
106+
5,
107+
10,
108+
25,
109+
50,
110+
100,
111+
0.1,
112+
0.2,
113+
0.3,
114+
0.4,
115+
0.6,
116+
0.7,
117+
0.8,
118+
0.9,
119+
1.5,
120+
4.0
121+
]
122+
}
123+
],
124+
"output_policy": "real_floating_point_and_generic",
125+
"returns": {
126+
"desc": "function value",
127+
"type": {
128+
"javascript": "number",
129+
"jsdoc": "number",
130+
"c": "float",
131+
"dtype": "float32"
132+
}
133+
},
134+
"keywords": [
135+
"special",
136+
"function",
137+
"dilogarithm",
138+
"polylogarithm",
139+
"integral",
140+
"spence",
141+
"spencef",
142+
"number"
143+
],
144+
"extra_keywords": []
145+
}
146+
}
69147
}

0 commit comments

Comments
 (0)