Skip to content

Commit 423b15e

Browse files
committed
refactor: update scripts
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e287527 commit 423b15e

File tree

12 files changed

+782
-1981
lines changed

12 files changed

+782
-1981
lines changed

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

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,80 @@
6666
"complex",
6767
"cmplx",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "cceil",
74+
"alias": "cceil",
75+
"pkg_desc": "round toward positive infinity",
76+
"desc": "rounds toward positive infinity",
77+
"short_desc": "ceil value",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "double",
86+
"dtype": "complex128"
87+
},
88+
"domain": [
89+
{
90+
"min": "-infinity",
91+
"max": "infinity"
92+
}
93+
],
94+
"rand": {
95+
"prng": "random/base/uniform",
96+
"parameters": [
97+
-10,
98+
10
99+
]
100+
},
101+
"example_values": [
102+
64,
103+
27,
104+
0,
105+
0.1,
106+
-9,
107+
8,
108+
-1,
109+
125,
110+
-10.2,
111+
11.3,
112+
-12.4,
113+
3.5,
114+
-1.6,
115+
15.7,
116+
-16,
117+
17.9,
118+
-188,
119+
19.11,
120+
-200,
121+
21.15
122+
]
123+
}
124+
],
125+
"output_policy": "same",
126+
"returns": {
127+
"desc": "absolute value",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "complex128"
133+
}
134+
},
135+
"keywords": [
136+
"abs",
137+
"absolute",
138+
"magnitude"
139+
],
140+
"extra_keywords": [
141+
"math.abs"
142+
]
143+
}
144+
}
70145
}

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

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,80 @@
6666
"complex",
6767
"cmplx",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "cceilf",
74+
"alias": "cceilf",
75+
"pkg_desc": "round toward positive infinity",
76+
"desc": "rounds toward positive infinity",
77+
"short_desc": "ceil value",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "double",
86+
"dtype": "complex64"
87+
},
88+
"domain": [
89+
{
90+
"min": "-infinity",
91+
"max": "infinity"
92+
}
93+
],
94+
"rand": {
95+
"prng": "random/base/uniform",
96+
"parameters": [
97+
-10,
98+
10
99+
]
100+
},
101+
"example_values": [
102+
64,
103+
27,
104+
0,
105+
0.1,
106+
-9,
107+
8,
108+
-1,
109+
125,
110+
-10.2,
111+
11.3,
112+
-12.4,
113+
3.5,
114+
-1.6,
115+
15.7,
116+
-16,
117+
17.9,
118+
-188,
119+
19.11,
120+
-200,
121+
21.15
122+
]
123+
}
124+
],
125+
"output_policy": "same",
126+
"returns": {
127+
"desc": "absolute value",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "complex64"
133+
}
134+
},
135+
"keywords": [
136+
"abs",
137+
"absolute",
138+
"magnitude"
139+
],
140+
"extra_keywords": [
141+
"math.abs"
142+
]
143+
}
144+
}
70145
}

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

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,80 @@
6363
"nearest",
6464
"value",
6565
"number"
66-
]
66+
],
67+
"__stdlib__": {
68+
"scaffold": {
69+
"$schema": "math/[email protected]",
70+
"base_alias": "ceil",
71+
"alias": "ceil",
72+
"pkg_desc": "round toward positive infinity",
73+
"desc": "rounds toward positive infinity",
74+
"short_desc": "ceil value",
75+
"parameters": [
76+
{
77+
"name": "x",
78+
"desc": "input value",
79+
"type": {
80+
"javascript": "number",
81+
"jsdoc": "number",
82+
"c": "double",
83+
"dtype": "float64"
84+
},
85+
"domain": [
86+
{
87+
"min": "-infinity",
88+
"max": "infinity"
89+
}
90+
],
91+
"rand": {
92+
"prng": "random/base/uniform",
93+
"parameters": [
94+
-10,
95+
10
96+
]
97+
},
98+
"example_values": [
99+
64,
100+
27,
101+
0,
102+
0.1,
103+
-9,
104+
8,
105+
-1,
106+
125,
107+
-10.2,
108+
11.3,
109+
-12.4,
110+
3.5,
111+
-1.6,
112+
15.7,
113+
-16,
114+
17.9,
115+
-188,
116+
19.11,
117+
-200,
118+
21.15
119+
]
120+
}
121+
],
122+
"output_policy": "same",
123+
"returns": {
124+
"desc": "absolute value",
125+
"type": {
126+
"javascript": "number",
127+
"jsdoc": "number",
128+
"c": "double",
129+
"dtype": "float64"
130+
}
131+
},
132+
"keywords": [
133+
"abs",
134+
"absolute",
135+
"magnitude"
136+
],
137+
"extra_keywords": [
138+
"math.abs"
139+
]
140+
}
141+
}
67142
}

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

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,80 @@
6767
"float32",
6868
"single-precision",
6969
"flt"
70-
]
70+
],
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/[email protected]",
74+
"base_alias": "ceilf",
75+
"alias": "ceilf",
76+
"pkg_desc": "round toward positive infinity",
77+
"desc": "rounds toward positive infinity",
78+
"short_desc": "ceil value",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value",
83+
"type": {
84+
"javascript": "number",
85+
"jsdoc": "number",
86+
"c": "double",
87+
"dtype": "float32"
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+
"output_policy": "same",
127+
"returns": {
128+
"desc": "absolute value",
129+
"type": {
130+
"javascript": "number",
131+
"jsdoc": "number",
132+
"c": "double",
133+
"dtype": "float32"
134+
}
135+
},
136+
"keywords": [
137+
"abs",
138+
"absolute",
139+
"magnitude"
140+
],
141+
"extra_keywords": [
142+
"math.abs"
143+
]
144+
}
145+
}
71146
}

0 commit comments

Comments
 (0)