Skip to content

Commit ea9f210

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 7d190e7 + 384672f commit ea9f210

File tree

3 files changed

+116
-40
lines changed

3 files changed

+116
-40
lines changed
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
{
2-
"options": {},
3-
"fields": [
4-
{
5-
"field": "src",
6-
"resolve": true,
7-
"relative": true
8-
},
9-
{
10-
"field": "include",
11-
"resolve": true,
12-
"relative": true
13-
},
14-
{
15-
"field": "libraries",
16-
"resolve": false,
17-
"relative": false
18-
},
19-
{
20-
"field": "libpath",
21-
"resolve": true,
22-
"relative": false
23-
}
24-
],
25-
"confs": [
26-
{
27-
"src": [],
28-
"include": [
29-
"./include"
30-
],
31-
"libraries": [],
32-
"libpath": [],
33-
"dependencies": []
34-
}
35-
]
2+
"options": {},
3+
"fields": [
4+
{
5+
"field": "src",
6+
"resolve": true,
7+
"relative": true
8+
},
9+
{
10+
"field": "include",
11+
"resolve": true,
12+
"relative": true
13+
},
14+
{
15+
"field": "libraries",
16+
"resolve": false,
17+
"relative": false
18+
},
19+
{
20+
"field": "libpath",
21+
"resolve": true,
22+
"relative": false
23+
}
24+
],
25+
"confs": [
26+
{
27+
"src": [],
28+
"include": [
29+
"./include"
30+
],
31+
"libraries": [],
32+
"libpath": [],
33+
"dependencies": []
34+
}
35+
]
3636
}

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

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,81 @@
6868
"double",
6969
"dbl"
7070
],
71-
"__stdlib__": {}
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/[email protected]",
74+
"base_alias": "abs2",
75+
"alias": "abs2",
76+
"pkg_desc": "compute the squared absolute value",
77+
"desc": "computes the squared absolute value",
78+
"short_desc": "squared absolute value",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value",
83+
"type": {
84+
"javascript": "number",
85+
"jsdoc": "number",
86+
"c": "double",
87+
"dtype": "float64"
88+
},
89+
"domain": [
90+
{
91+
"min": "-infinity",
92+
"max": "infinity"
93+
}
94+
],
95+
"rand": {
96+
"prng": "random/base/uniform",
97+
"parameters": [
98+
-10,
99+
10
100+
]
101+
},
102+
"example_values": [
103+
64,
104+
27,
105+
0,
106+
0.1,
107+
-9,
108+
8,
109+
-1,
110+
125,
111+
-10.2,
112+
11.3,
113+
-12.4,
114+
3.5,
115+
-1.6,
116+
15.7,
117+
-16,
118+
17.9,
119+
-188,
120+
19.11,
121+
-200,
122+
21.15
123+
]
124+
}
125+
],
126+
"returns": {
127+
"desc": "squared absolute value",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "float64"
133+
}
134+
},
135+
"keywords": [
136+
"abs",
137+
"abs2",
138+
"squared",
139+
"square",
140+
"absolute",
141+
"magnitude"
142+
],
143+
"extra_keywords": [
144+
"math.abs"
145+
]
146+
}
147+
}
72148
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"objectMode": false,
3-
"encoding": null,
4-
"sep": "\n",
5-
"copy": true,
6-
"siter": 1e308
2+
"objectMode": false,
3+
"encoding": null,
4+
"sep": "\n",
5+
"copy": true,
6+
"siter": 1e308
77
}

0 commit comments

Comments
 (0)