Skip to content

Commit 147344e

Browse files
authored
chore: add structured package data for math/base/special/negalucas
PR-URL: stdlib-js#8401 Ref: stdlib-js#7924 Reviewed-by: Athan Reines <[email protected]>
1 parent 4095600 commit 147344e

File tree

1 file changed

+77
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/negalucas

1 file changed

+77
-1
lines changed

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

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,81 @@
6666
"fibo",
6767
"nlucas",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "negalucas",
74+
"alias": "negalucas",
75+
"pkg_desc": "compute the nth negaLucas number",
76+
"desc": "computes the nth negaLucas number",
77+
"short_desc": "negaLucas number",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "double",
86+
"dtype": "float64"
87+
},
88+
"domain": [
89+
{
90+
"min": "-infinity",
91+
"max": 0
92+
}
93+
],
94+
"rand": {
95+
"prng": "random/base/discrete-uniform",
96+
"parameters": [
97+
-100,
98+
0
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+
-15,
114+
-20,
115+
-25,
116+
-30,
117+
-40,
118+
-50,
119+
-60,
120+
-70,
121+
-76
122+
]
123+
}
124+
],
125+
"output_policy": "real_floating_point_and_generic",
126+
"returns": {
127+
"desc": "negaLucas number",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "float64"
133+
}
134+
},
135+
"keywords": [
136+
"lucas",
137+
"negalucas",
138+
"fibonacci",
139+
"fib",
140+
"fibo",
141+
"nlucas"
142+
],
143+
"extra_keywords": []
144+
}
145+
}
70146
}

0 commit comments

Comments
 (0)