Skip to content

Commit 5144f0c

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

File tree

1 file changed

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

1 file changed

+79
-1
lines changed

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

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,83 @@
6666
"number",
6767
"integer",
6868
"sequences"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "lucas",
74+
"alias": "lucasf",
75+
"pkg_desc": "compute the nth Lucas number as a single-precision floating-point number",
76+
"desc": "computes the nth Lucas number as a single-precision floating-point number",
77+
"short_desc": "Lucas number",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "float",
86+
"dtype": "float32"
87+
},
88+
"domain": [
89+
{
90+
"min": 0,
91+
"max": "infinity"
92+
}
93+
],
94+
"rand": {
95+
"prng": "random/base/discrete-uniform",
96+
"parameters": [
97+
0,
98+
100
99+
]
100+
},
101+
"example_values": [
102+
0,
103+
1,
104+
2,
105+
3,
106+
4,
107+
5,
108+
6,
109+
7,
110+
8,
111+
9,
112+
10,
113+
11,
114+
12,
115+
13,
116+
14,
117+
15,
118+
16,
119+
17,
120+
18,
121+
19,
122+
20
123+
]
124+
}
125+
],
126+
"output_policy": "real_floating_point_and_generic",
127+
"returns": {
128+
"desc": "Lucas number",
129+
"type": {
130+
"javascript": "number",
131+
"jsdoc": "number",
132+
"c": "float",
133+
"dtype": "float32"
134+
}
135+
},
136+
"keywords": [
137+
"fibonacci",
138+
"lucas",
139+
"lucasf",
140+
"fib",
141+
"number",
142+
"integer",
143+
"sequences"
144+
],
145+
"extra_keywords": []
146+
}
147+
}
70148
}

0 commit comments

Comments
 (0)