Skip to content

Commit 12eb145

Browse files
chore: add structured package data for math/base/special/cceil
--- 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 be54164 commit 12eb145

File tree

1 file changed

+78
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/cceil

1 file changed

+78
-1
lines changed

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

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,82 @@
6666
"complex",
6767
"cmplx",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "ceil",
74+
"alias": "cceil",
75+
"pkg_desc": "round each component of a double-precision complex floating-point number toward positive infinity",
76+
"desc": "rounds each component of a double-precision complex floating-point number toward positive infinity",
77+
"short_desc": "complex ceil",
78+
"parameters": [
79+
{
80+
"name": "z",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "Complex128",
84+
"jsdoc": "Complex128",
85+
"c": "stdlib_complex128_t",
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+
{ "re": 3.14, "im": 1.5 },
103+
{ "re": -3.14, "im": -1.5 },
104+
{ "re": 0, "im": 0 },
105+
{ "re": -1.5, "im": 2.5 },
106+
{ "re": 2.5, "im": -1.5 },
107+
{ "re": 0, "im": -3.7 },
108+
{ "re": 4.2, "im": 0 },
109+
{ "re": 21.2, "im": 3 },
110+
{ "re": 11, "im": -5 },
111+
{ "re": 33, "im": -14.67 },
112+
{ "re": -42, "im": 9.3 },
113+
{ "re": -3, "im": 3 },
114+
{ "re": 73, "im": 31 },
115+
{ "re": -2.45, "im": 1.23 },
116+
{ "re": 2.45, "im": -1.23 },
117+
{ "re": 1.77, "im": -3.14 },
118+
{ "re": -7.5, "im": 8.2 },
119+
{ "re": 5.5, "im": -12.3 },
120+
{ "re": -15.8, "im": 0.4 },
121+
{ "re": 0.99, "im": -0.99 }
122+
]
123+
}
124+
],
125+
"returns": {
126+
"desc": "rounded complex value",
127+
"type": {
128+
"javascript": "Complex128",
129+
"jsdoc": "Complex128",
130+
"c": "stdlib_complex128_t",
131+
"dtype": "complex128"
132+
}
133+
},
134+
"keywords": [
135+
"ceil",
136+
"cceil",
137+
"round",
138+
"complex",
139+
"complex128",
140+
"positive infinity"
141+
],
142+
"extra_keywords": [
143+
"math.ceil"
144+
]
145+
}
146+
}
70147
}

0 commit comments

Comments
 (0)