@@ -23,30 +23,30 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
2323 < div class ='clearfix '>
2424
2525 < div class ='fl pad1y space-right2 '>
26- < span class ="strong "> 93.1 % </ span >
26+ < span class ="strong "> 100 % </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 54 /58</ span >
28+ < span class ='fraction '> 58 /58</ span >
2929 </ div >
3030
3131
3232 < div class ='fl pad1y space-right2 '>
3333 < span class ="strong "> 100% </ span >
3434 < span class ="quiet "> Branches</ span >
35- < span class ='fraction '> 1/1 </ span >
35+ < span class ='fraction '> 2/2 </ span >
3636 </ div >
3737
3838
3939 < div class ='fl pad1y space-right2 '>
40- < span class ="strong "> 0 % </ span >
40+ < span class ="strong "> 100 % </ span >
4141 < span class ="quiet "> Functions</ span >
42- < span class ='fraction '> 0 /1</ span >
42+ < span class ='fraction '> 1 /1</ span >
4343 </ div >
4444
4545
4646 < div class ='fl pad1y space-right2 '>
47- < span class ="strong "> 93.1 % </ span >
47+ < span class ="strong "> 100 % </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 54 /58</ span >
49+ < span class ='fraction '> 58 /58</ span >
5050 </ div >
5151
5252
@@ -57,7 +57,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
5757 < template id ="filterTemplate ">
5858 < div class ="quiet ">
5959 Filter:
60- < input oninput =" onInput() " type ="search " id ="fileSearch ">
60+ < input type ="search " id ="fileSearch ">
6161 </ div >
6262 </ template >
6363 </ div >
@@ -170,10 +170,10 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
170170< span class ="cline-any cline-yes "> 1x</ span >
171171< span class ="cline-any cline-yes "> 1x</ span >
172172< span class ="cline-any cline-yes "> 1x</ span >
173- < span class ="cline-any cline-no " > </ span >
174- < span class ="cline-any cline-no " > </ span >
175- < span class ="cline-any cline-no " > </ span >
176- < span class ="cline-any cline-no " > </ span >
173+ < span class ="cline-any cline-yes " > 8x </ span >
174+ < span class ="cline-any cline-yes " > 8x </ span >
175+ < span class ="cline-any cline-yes " > 8x </ span >
176+ < span class ="cline-any cline-yes " > 8x </ span >
177177< span class ="cline-any cline-yes "> 1x</ span >
178178< span class ="cline-any cline-yes "> 1x</ span >
179179< span class ="cline-any cline-yes "> 1x</ span >
@@ -201,23 +201,23 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
201201
202202// MODULES //
203203
204- var Complex128 = require( '@stdlib/complex/float64' );
204+ var Complex128 = require( '@stdlib/complex/float64/ctor ' );
205205var addon = require( './../src/addon.node' );
206206
207207
208208// MAIN //
209209
210210/**
211- * Rounds a complex number toward positive infinity.
211+ * Rounds each component of a double-precision complex floating-point number toward positive infinity.
212212*
213213* @private
214214* @param {Complex128} z - complex number
215215* @returns {Complex128} result
216216*
217217* @example
218- * var Complex128 = require( '@stdlib/complex/float64' );
219- * var real = require( '@stdlib/complex/real' );
220- * var imag = require( '@stdlib/complex/imag' );
218+ * var Complex128 = require( '@stdlib/complex/float64/ctor ' );
219+ * var real = require( '@stdlib/complex/float64/ real' );
220+ * var imag = require( '@stdlib/complex/float64/ imag' );
221221*
222222* var v = cceil( new Complex128( -1.5, 2.5 ) );
223223* // returns <Complex128>
@@ -228,10 +228,10 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
228228* var im = imag( v );
229229* // returns 3.0
230230*/
231- < span class =" cstat-no " title =" statement not covered " > < span class =" fstat-no " title =" function not covered " > function cceil( z ) {</ span > </ span >
232- < span class =" cstat-no " title =" statement not covered " > var v = addon( z );</ span >
233- < span class =" cstat-no " title =" statement not covered " > return new Complex128( v.re, v.im );</ span >
234- < span class =" cstat-no " title =" statement not covered " > } </ span >
231+ function cceil( z ) {
232+ var v = addon( z );
233+ return new Complex128( v.re, v.im );
234+ }
235235
236236
237237// EXPORTS //
@@ -244,7 +244,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
244244 < div class ='footer quiet pad2 space-top1 center small '>
245245 Code coverage generated by
246246 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
247- at 2023-08-17T00:11:10.595Z
247+ at 2024-11-15T02:51:51.164Z
248248 </ div >
249249 < script src ="../../../../../prettify.js "> </ script >
250250 < script >
0 commit comments