Skip to content

Commit 5e7db54

Browse files
chore: add structured package data for math/base/special/cceilf
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent dcafcbc commit 5e7db54

File tree

1 file changed

+138
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/cceilf

1 file changed

+138
-1
lines changed

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

Lines changed: 138 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,142 @@
6666
"complex",
6767
"cmplx",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "ceil",
74+
"alias": "cceilf",
75+
"pkg_desc": "round each component of a complex number toward positive infinity",
76+
"desc": "rounds each component of a complex number toward positive infinity",
77+
"short_desc": "",
78+
"parameters": [
79+
{
80+
"name": "z",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "Complex64",
84+
"jsdoc": "Complex64",
85+
"c": "stdlib_complex64_t",
86+
"dtype": "complex64"
87+
},
88+
"domain": null,
89+
"rand": {
90+
"prng": "random/base/uniform",
91+
"parameters": [
92+
[
93+
-10,
94+
10
95+
],
96+
[
97+
-10,
98+
10
99+
]
100+
]
101+
},
102+
"example_values": [
103+
{
104+
"re": -3.14,
105+
"im": -1.5
106+
},
107+
{
108+
"re": 0,
109+
"im": 0
110+
},
111+
{
112+
"re": -1.5,
113+
"im": 2.5
114+
},
115+
{
116+
"re": 2.5,
117+
"im": -1.5
118+
},
119+
{
120+
"re": 0,
121+
"im": -3.7
122+
},
123+
{
124+
"re": 4.2,
125+
"im": 0
126+
},
127+
{
128+
"re": 21.2,
129+
"im": 3
130+
},
131+
{
132+
"re": 11,
133+
"im": -5
134+
},
135+
{
136+
"re": 33,
137+
"im": -14.67
138+
},
139+
{
140+
"re": -42,
141+
"im": 9.3
142+
},
143+
{
144+
"re": -3,
145+
"im": 3
146+
},
147+
{
148+
"re": 73,
149+
"im": 31
150+
},
151+
{
152+
"re": -2.45,
153+
"im": 1.23
154+
},
155+
{
156+
"re": 2.45,
157+
"im": -1.23
158+
},
159+
{
160+
"re": 1.77,
161+
"im": -3.14
162+
},
163+
{
164+
"re": -7.5,
165+
"im": 8.2
166+
},
167+
{
168+
"re": 5.5,
169+
"im": -12.3
170+
},
171+
{
172+
"re": -15.8,
173+
"im": 0.4
174+
},
175+
{
176+
"re": 0.99,
177+
"im": -0.99
178+
}
179+
]
180+
}
181+
],
182+
"returns": {
183+
"desc": "result",
184+
"type": {
185+
"javascript": "Complex64",
186+
"jsdoc": "Complex64",
187+
"c": "stdlib_complex64_t",
188+
"dtype": "complex64"
189+
}
190+
},
191+
"keywords": [
192+
"ceil",
193+
"cceil",
194+
"round",
195+
"integer",
196+
"nearest",
197+
"value",
198+
"complex",
199+
"cmplx",
200+
"number"
201+
],
202+
"extra_keywords": [
203+
"math.ceil"
204+
]
205+
}
206+
}
70207
}

0 commit comments

Comments
 (0)