File tree Expand file tree Collapse file tree 2 files changed +76
-2
lines changed Expand file tree Collapse file tree 2 files changed +76
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<section class =" release " id =" unreleased " >
6
6
7
- ## Unreleased (2025-09-04 )
7
+ ## Unreleased (2025-09-05 )
8
8
9
9
<section class =" features " >
10
10
@@ -633,6 +633,7 @@ A total of 62 issues were closed in this release:
633
633
634
634
<details >
635
635
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)_
636
637
- [ ` 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)_
637
638
- [ ` fe96d97 ` ] ( https://github.com/stdlib-js/stdlib/commit/fe96d973306fc6d28936c6150c160fb5d1f590c7 ) - ** test:** use ` ulpdiff ` for floating-point comparisons _ (by Karan Anand)_
638
639
- [ ` 3ab83ba ` ] ( https://github.com/stdlib-js/stdlib/commit/3ab83ba5fd5e559b7304fc560872c8936b9cff60 ) - ** test:** update fixtures to use ` Float32 ` inputs _ (by Karan Anand)_
Original file line number Diff line number Diff line change 62
62
" fibonacci" ,
63
63
" fib" ,
64
64
" 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
+ }
66
139
}
You can’t perform that action at this time.
0 commit comments