Skip to content

Commit c969f73

Browse files
committed
Update artifacts
1 parent f907d3f commit c969f73

File tree

5 files changed

+55
-54
lines changed

5 files changed

+55
-54
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[165,165,100,5,5,100,2,2,100,165,165,100,"e5bfdff2d2c137f84eb5f925f8d63a3729d05eb2","2024-11-14 18:49:47 -0800"]

math/base/special/cceil/index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,30 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/cceil/li
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">97.57% </span>
26+
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>161/165</span>
28+
<span class='fraction'>165/165</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'>4/4</span>
35+
<span class='fraction'>5/5</span>
3636
</div>
3737

3838

3939
<div class='fl pad1y space-right2'>
40-
<span class="strong">50% </span>
40+
<span class="strong">100% </span>
4141
<span class="quiet">Functions</span>
42-
<span class='fraction'>1/2</span>
42+
<span class='fraction'>2/2</span>
4343
</div>
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">97.57% </span>
47+
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>161/165</span>
49+
<span class='fraction'>165/165</span>
5050
</div>
5151

5252

@@ -57,7 +57,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/cceil/li
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>
@@ -110,17 +110,17 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/cceil/li
110110

111111
<tr>
112112
<td class="file high" data-value="native.js"><a href="native.js.html">native.js</a></td>
113-
<td data-value="93.1" class="pic high">
114-
<div class="chart"><div class="cover-fill" style="width: 93%"></div><div class="cover-empty" style="width: 7%"></div></div>
113+
<td data-value="100" class="pic high">
114+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
115115
</td>
116-
<td data-value="93.1" class="pct high">93.1%</td>
117-
<td data-value="58" class="abs high">54/58</td>
116+
<td data-value="100" class="pct high">100%</td>
117+
<td data-value="58" class="abs high">58/58</td>
118+
<td data-value="100" class="pct high">100%</td>
119+
<td data-value="2" class="abs high">2/2</td>
118120
<td data-value="100" class="pct high">100%</td>
119121
<td data-value="1" class="abs high">1/1</td>
120-
<td data-value="0" class="pct low">0%</td>
121-
<td data-value="1" class="abs low">0/1</td>
122-
<td data-value="93.1" class="pct high">93.1%</td>
123-
<td data-value="58" class="abs high">54/58</td>
122+
<td data-value="100" class="pct high">100%</td>
123+
<td data-value="58" class="abs high">58/58</td>
124124
</tr>
125125

126126
</tbody>
@@ -131,7 +131,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/cceil/li
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2023-08-17T00:11:10.595Z
134+
at 2024-11-15T02:51:51.164Z
135135
</div>
136136
<script src="../../../../../prettify.js"></script>
137137
<script>

math/base/special/cceil/index.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
@@ -182,14 +182,14 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
182182
'use strict';
183183
&nbsp;
184184
/**
185-
* Round a double-precision floating-point complex number toward positive infinity.
185+
* Round each component of a double-precision complex floating-point number toward positive infinity.
186186
*
187187
* @module @stdlib/math/base/special/cceil
188188
*
189189
* @example
190-
* var Complex128 = require( '@stdlib/complex/float64' );
191-
* var real = require( '@stdlib/complex/real' );
192-
* var imag = require( '@stdlib/complex/imag' );
190+
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
191+
* var real = require( '@stdlib/complex/float64/real' );
192+
* var imag = require( '@stdlib/complex/float64/imag' );
193193
* var cceil = require( '@stdlib/math/base/special/cceil' );
194194
*
195195
* var v = cceil( new Complex128( -1.5, 2.5 ) );
@@ -217,7 +217,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
217217
<div class='footer quiet pad2 space-top1 center small'>
218218
Code coverage generated by
219219
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
220-
at 2023-08-17T00:11:10.595Z
220+
at 2024-11-15T02:51:51.164Z
221221
</div>
222222
<script src="../../../../../prettify.js"></script>
223223
<script>

math/base/special/cceil/main.js.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
@@ -201,24 +201,24 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
201201
&nbsp;
202202
// MODULES //
203203
&nbsp;
204-
var Complex128 = require( '@stdlib/complex/float64' );
204+
var Complex128 = require( '@stdlib/complex/float64/ctor' );
205205
var ceil = require( '@stdlib/math/base/special/ceil' );
206-
var real = require( '@stdlib/complex/real' );
207-
var imag = require( '@stdlib/complex/imag' );
206+
var real = require( '@stdlib/complex/float64/real' );
207+
var imag = require( '@stdlib/complex/float64/imag' );
208208
&nbsp;
209209
&nbsp;
210210
// MAIN //
211211
&nbsp;
212212
/**
213-
* Rounds a complex number toward positive infinity.
213+
* Rounds each component of a double-precision complex floating-point number toward positive infinity.
214214
*
215215
* @param {Complex128} z - complex number
216216
* @returns {Complex128} result
217217
*
218218
* @example
219-
* var Complex128 = require( '@stdlib/complex/float64' );
220-
* var real = require( '@stdlib/complex/real' );
221-
* var imag = require( '@stdlib/complex/imag' );
219+
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
220+
* var real = require( '@stdlib/complex/float64/real' );
221+
* var imag = require( '@stdlib/complex/float64/imag' );
222222
*
223223
* var v = cceil( new Complex128( -1.5, 2.5 ) );
224224
* // returns &lt;Complex128&gt;
@@ -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>

math/base/special/cceil/native.js.html

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -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">&nbsp;</span>
174-
<span class="cline-any cline-no">&nbsp;</span>
175-
<span class="cline-any cline-no">&nbsp;</span>
176-
<span class="cline-any cline-no">&nbsp;</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
&nbsp;
202202
// MODULES //
203203
&nbsp;
204-
var Complex128 = require( '@stdlib/complex/float64' );
204+
var Complex128 = require( '@stdlib/complex/float64/ctor' );
205205
var addon = require( './../src/addon.node' );
206206
&nbsp;
207207
&nbsp;
208208
// MAIN //
209209
&nbsp;
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 &lt;Complex128&gt;
@@ -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
&nbsp;
236236
&nbsp;
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

Comments
 (0)