Skip to content

Commit 13d377d

Browse files
committed
chore: add scaffold metadata
--- 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: na - 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: na - 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 ceef77f commit 13d377d

File tree

5 files changed

+371
-0
lines changed

5 files changed

+371
-0
lines changed

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

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,78 @@
6666
"trigonometry",
6767
"angle"
6868
]
69+
,
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "acsc",
74+
"alias": "acsc",
75+
"pkg_desc": "compute the arccosecant of a number",
76+
"desc": "computes the arccosecant of a number",
77+
"short_desc": "arccosecant",
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": -1
92+
},
93+
{
94+
"min": 1,
95+
"max": "infinity"
96+
}
97+
],
98+
"rand": {
99+
"prng": "random/base/uniform",
100+
"parameters": [
101+
1.1,
102+
5.1
103+
]
104+
},
105+
"example_values": [
106+
-5.0,
107+
-3.2,
108+
-2.4,
109+
-1.1,
110+
1.1,
111+
2.4,
112+
3.7,
113+
5.0
114+
]
115+
}
116+
],
117+
"output_policy": "real_floating_point_and_generic",
118+
"returns": {
119+
"desc": "arccosecant",
120+
"type": {
121+
"javascript": "number",
122+
"jsdoc": "number",
123+
"c": "double",
124+
"dtype": "float64"
125+
}
126+
},
127+
"keywords": [
128+
"acsc",
129+
"arcsine",
130+
"arccosecant",
131+
"cosecant",
132+
"sine",
133+
"inverse",
134+
"trig",
135+
"trigonometry",
136+
"angle"
137+
],
138+
"extra_keywords": [
139+
"math.asin"
140+
]
141+
}
142+
}
69143
}

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

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,77 @@
6666
"radians",
6767
"angle"
6868
]
69+
,
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "acsc",
74+
"alias": "acscf",
75+
"pkg_desc": "compute the arccosecant of a single-precision floating-point number",
76+
"desc": "computes the arccosecant of a single-precision floating-point number",
77+
"short_desc": "arccosecant",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "float",
86+
"dtype": "float32"
87+
},
88+
"domain": [
89+
{
90+
"min": "-infinity",
91+
"max": -1
92+
},
93+
{
94+
"min": 1,
95+
"max": "infinity"
96+
}
97+
],
98+
"rand": {
99+
"prng": "random/base/uniform",
100+
"parameters": [
101+
1.1,
102+
5.1
103+
]
104+
},
105+
"example_values": [
106+
-5.0,
107+
-3.2,
108+
-2.4,
109+
-1.1,
110+
1.1,
111+
2.4,
112+
3.7,
113+
5.0
114+
]
115+
}
116+
],
117+
"output_policy": "real_floating_point_and_generic",
118+
"returns": {
119+
"desc": "arccosecant",
120+
"type": {
121+
"javascript": "number",
122+
"jsdoc": "number",
123+
"c": "float",
124+
"dtype": "float32"
125+
}
126+
},
127+
"keywords": [
128+
"acscf",
129+
"arccosecant",
130+
"cosecant",
131+
"inverse",
132+
"trig",
133+
"trigonometry",
134+
"radians",
135+
"angle"
136+
],
137+
"extra_keywords": [
138+
"math.asin"
139+
]
140+
}
141+
}
69142
}

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

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,82 @@
6969
"math.asinh",
7070
"asinh"
7171
]
72+
,
73+
"__stdlib__": {
74+
"scaffold": {
75+
"$schema": "math/[email protected]",
76+
"base_alias": "acsch",
77+
"alias": "acsch",
78+
"pkg_desc": "compute the hyperbolic arccosecant of a number",
79+
"desc": "computes the hyperbolic arccosecant of a number",
80+
"short_desc": "hyperbolic arccosecant",
81+
"parameters": [
82+
{
83+
"name": "x",
84+
"desc": "input value",
85+
"type": {
86+
"javascript": "number",
87+
"jsdoc": "number",
88+
"c": "double",
89+
"dtype": "float64"
90+
},
91+
"domain": [
92+
{
93+
"min": "-infinity",
94+
"max": 0
95+
},
96+
{
97+
"min": 0,
98+
"max": "infinity"
99+
}
100+
],
101+
"rand": {
102+
"prng": "random/base/uniform",
103+
"parameters": [
104+
0.5,
105+
5.0
106+
]
107+
},
108+
"example_values": [
109+
-5.0,
110+
-3.2,
111+
-2.4,
112+
-1.1,
113+
-0.5,
114+
0.5,
115+
1.1,
116+
2.4,
117+
3.7,
118+
5.0
119+
]
120+
}
121+
],
122+
"output_policy": "real_floating_point_and_generic",
123+
"returns": {
124+
"desc": "hyperbolic arccosecant",
125+
"type": {
126+
"javascript": "number",
127+
"jsdoc": "number",
128+
"c": "double",
129+
"dtype": "float64"
130+
}
131+
},
132+
"keywords": [
133+
"acsch",
134+
"hyperbolic",
135+
"inverse",
136+
"cosecant",
137+
"csc",
138+
"arc",
139+
"arccosecant",
140+
"trig",
141+
"trigonometry",
142+
"angle",
143+
"asinh"
144+
],
145+
"extra_keywords": [
146+
"math.asinh"
147+
]
148+
}
149+
}
72150
}

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

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,78 @@
6969
"polyfill",
7070
"ponyfill"
7171
]
72+
,
73+
"__stdlib__": {
74+
"scaffold": {
75+
"$schema": "math/[email protected]",
76+
"base_alias": "asin",
77+
"alias": "asin",
78+
"pkg_desc": "compute the arcsine of a double-precision floating-point number",
79+
"desc": "computes the arcsine of a double-precision floating-point number",
80+
"short_desc": "arcsine",
81+
"parameters": [
82+
{
83+
"name": "x",
84+
"desc": "input value (in radians)",
85+
"type": {
86+
"javascript": "number",
87+
"jsdoc": "number",
88+
"c": "double",
89+
"dtype": "float64"
90+
},
91+
"domain": [
92+
{
93+
"min": -1,
94+
"max": 1
95+
}
96+
],
97+
"rand": {
98+
"prng": "random/base/uniform",
99+
"parameters": [
100+
-1.0,
101+
1.0
102+
]
103+
},
104+
"example_values": [
105+
-1.0,
106+
-0.78,
107+
-0.56,
108+
-0.33,
109+
-0.11,
110+
0.0,
111+
0.11,
112+
0.33,
113+
0.56,
114+
0.78,
115+
1.0
116+
]
117+
}
118+
],
119+
"output_policy": "real_floating_point_and_generic",
120+
"returns": {
121+
"desc": "arcsine",
122+
"type": {
123+
"javascript": "number",
124+
"jsdoc": "number",
125+
"c": "double",
126+
"dtype": "float64"
127+
}
128+
},
129+
"keywords": [
130+
"asin",
131+
"arcsine",
132+
"sine",
133+
"inverse",
134+
"trig",
135+
"trigonometry",
136+
"radians",
137+
"angle",
138+
"polyfill",
139+
"ponyfill"
140+
],
141+
"extra_keywords": [
142+
"math.asin"
143+
]
144+
}
145+
}
72146
}

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,76 @@
6767
"radians",
6868
"angle"
6969
]
70+
,
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/[email protected]",
74+
"base_alias": "asin",
75+
"alias": "asinf",
76+
"pkg_desc": "compute the arcsine of a single-precision floating-point number",
77+
"desc": "computes the arcsine of a single-precision floating-point number",
78+
"short_desc": "arcsine",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value (in radians)",
83+
"type": {
84+
"javascript": "number",
85+
"jsdoc": "number",
86+
"c": "float",
87+
"dtype": "float32"
88+
},
89+
"domain": [
90+
{
91+
"min": -1,
92+
"max": 1
93+
}
94+
],
95+
"rand": {
96+
"prng": "random/base/uniform",
97+
"parameters": [
98+
-1.0,
99+
1.0
100+
]
101+
},
102+
"example_values": [
103+
-1.0,
104+
-0.78,
105+
-0.56,
106+
-0.33,
107+
-0.11,
108+
0.0,
109+
0.11,
110+
0.33,
111+
0.56,
112+
0.78,
113+
1.0
114+
]
115+
}
116+
],
117+
"output_policy": "real_floating_point_and_generic",
118+
"returns": {
119+
"desc": "arcsine",
120+
"type": {
121+
"javascript": "number",
122+
"jsdoc": "number",
123+
"c": "float",
124+
"dtype": "float32"
125+
}
126+
},
127+
"keywords": [
128+
"asinf",
129+
"arcsine",
130+
"sine",
131+
"inverse",
132+
"trig",
133+
"trigonometry",
134+
"radians",
135+
"angle"
136+
],
137+
"extra_keywords": [
138+
"math.asin"
139+
]
140+
}
141+
}
70142
}

0 commit comments

Comments
 (0)