Skip to content

Commit 4c81241

Browse files
authored
chore: add structured package data for math/base/special/nonfibonaccif
PR-URL: #8404 Ref: #7924 Reviewed-by: Athan Reines <[email protected]>
1 parent 329ef48 commit 4c81241

File tree

1 file changed

+75
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/nonfibonaccif

1 file changed

+75
-1
lines changed

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

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,79 @@
6565
"seq",
6666
"number",
6767
"integer"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "nonfibonacci",
73+
"alias": "nonfibonaccif",
74+
"pkg_desc": "compute the nth non-Fibonacci single-precision floating-point number",
75+
"desc": "computes the nth non-Fibonacci single-precision floating-point number",
76+
"short_desc": "non-Fibonacci number",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "float",
85+
"dtype": "float32"
86+
},
87+
"domain": [
88+
{
89+
"min": 0,
90+
"max": "infinity"
91+
}
92+
],
93+
"rand": {
94+
"prng": "random/base/discrete-uniform",
95+
"parameters": [
96+
0,
97+
100
98+
]
99+
},
100+
"example_values": [
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+
18,
119+
19,
120+
20
121+
]
122+
}
123+
],
124+
"output_policy": "real_floating_point_and_generic",
125+
"returns": {
126+
"desc": "non-Fibonacci number",
127+
"type": {
128+
"javascript": "number",
129+
"jsdoc": "number",
130+
"c": "float",
131+
"dtype": "float32"
132+
}
133+
},
134+
"keywords": [
135+
"fibonacci",
136+
"fib",
137+
"sequence",
138+
"seq"
139+
],
140+
"extra_keywords": []
141+
}
142+
}
69143
}

0 commit comments

Comments
 (0)