Skip to content

Commit cde0316

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

File tree

1 file changed

+76
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/negafibonacci

1 file changed

+76
-1
lines changed

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

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

0 commit comments

Comments
 (0)