Skip to content

Commit 7086a24

Browse files
committed
chore: add structured package data for math/base/special/factorialln
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9e95e4b commit 7086a24

File tree

1 file changed

+73
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/factorialln

1 file changed

+73
-1
lines changed

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

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,77 @@
6868
"combinatorics",
6969
"gamma",
7070
"number"
71-
]
71+
],
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/[email protected]",
75+
"base_alias": "factorialln",
76+
"alias": "factorialln",
77+
"pkg_desc": "compute the natural logarithm of the factorial",
78+
"desc": "computes the natural logarithm of the factorial",
79+
"short_desc": "factorialln",
80+
"parameters": [
81+
{
82+
"name": "x",
83+
"desc": "input value",
84+
"type": {
85+
"javascript": "number",
86+
"jsdoc": "number",
87+
"c": "double",
88+
"dtype": "float64"
89+
},
90+
"domain": [
91+
{
92+
"min": 0,
93+
"max": "infinity"
94+
}
95+
],
96+
"rand": {
97+
"prng": "random/base/discrete-uniform",
98+
"parameters": [
99+
0,
100+
100
101+
]
102+
},
103+
"example_values": [
104+
1,
105+
2,
106+
3,
107+
4,
108+
5,
109+
6,
110+
7,
111+
8,
112+
9,
113+
10,
114+
11,
115+
12,
116+
13,
117+
14,
118+
93,
119+
95,
120+
96,
121+
97,
122+
98,
123+
99
124+
]
125+
}
126+
],
127+
"output_policy": "real_floating_point_and_generic",
128+
"returns": {
129+
"desc": "factorialln",
130+
"type": {
131+
"javascript": "number",
132+
"jsdoc": "number",
133+
"c": "double",
134+
"dtype": "float64"
135+
}
136+
},
137+
"keywords": [
138+
"factorialln",
139+
"lfact"
140+
],
141+
"extra_keywords": []
142+
}
143+
}
72144
}

0 commit comments

Comments
 (0)