Skip to content

Commit 5b5ca45

Browse files
committed
Auto-generated commit
1 parent b96b690 commit 5b5ca45

File tree

2 files changed

+76
-2
lines changed

2 files changed

+76
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-04)
7+
## Unreleased (2025-09-05)
88

99
<section class="features">
1010

@@ -633,6 +633,7 @@ A total of 62 issues were closed in this release:
633633

634634
<details>
635635

636+
- [`baf65a6`](https://github.com/stdlib-js/stdlib/commit/baf65a6e432f27fd2876946a96d4801bb469c3ad) - **chore:** add structured package data for `math/base/special/fibonacci` [(#8012)](https://github.com/stdlib-js/stdlib/pull/8012) _(by Lokesh Ranjan, Athan Reines)_
636637
- [`c726af4`](https://github.com/stdlib-js/stdlib/commit/c726af410e5fc8fd7ffc6b6178da3dc38b4505f9) - **style:** remove empty lines [(#8010)](https://github.com/stdlib-js/stdlib/pull/8010) _(by stdlib-bot)_
637638
- [`fe96d97`](https://github.com/stdlib-js/stdlib/commit/fe96d973306fc6d28936c6150c160fb5d1f590c7) - **test:** use `ulpdiff` for floating-point comparisons _(by Karan Anand)_
638639
- [`3ab83ba`](https://github.com/stdlib-js/stdlib/commit/3ab83ba5fd5e559b7304fc560872c8936b9cff60) - **test:** update fixtures to use `Float32` inputs _(by Karan Anand)_

base/special/fibonacci/package.json

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

0 commit comments

Comments
 (0)