Skip to content

Commit

Permalink
docs: resolve lint errors in TS declaration files
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 28, 2024
1 parent 508c8a7 commit b89c97c
Show file tree
Hide file tree
Showing 34 changed files with 136 additions and 133 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `imuldw`.
*/
interface Imuldw {
* Interface describing `imuldw`.
*/
interface Imuldw {
/**
* Performs multiplication of two signed 32-bit integers and returns an array of two signed 32-bit integers which represents the signed 64-bit integer product.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `umuldw`
*/
* Interface describing `umuldw`
*/
interface Umuldw {
/**
* Performs multiplication of two unsigned 32-bit integers and returns an array of two unsigned 32-bit integers which represents the unsigned 64-bit integer product.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = acscdf( sqrtf( 2.0 ) );
* var v = acscdf( sqrtf( 2.0 ) );
* // returns ~45.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = asecdf( sqrtf( 2.0 ) );
* var v = asecdf( sqrtf( 2.0 ) );
* // returns 45.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @example
* var sqrt = require( '@stdlib/math/base/special/sqrt' );
*
** var v = asindf( sqrt( 3.0 ) / 2.0 );
* var v = asindf( sqrt( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = asindf( sqrtf( 3.0 ) / 2.0 );
* var v = asindf( sqrtf( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@
*
* @param x - input value (in degrees)
* @returns cosine
*
* @example
* var v = cosd( 0.0 );
* // returns 1.0
*
* @example
* var v = cosd( 60.0 );
* // returns ~0.5
*
* @example
* var v = cosd( 90.0);
* // returns 0
*
* @example
* var v = cosd( NaN );
* // returns NaN
*
* @example
* var v = cosd( 0.0 );
* // returns 1.0
*
* @example
* var v = cosd( 60.0 );
* // returns ~0.5
*
* @example
* var v = cosd( 90.0);
* // returns 0
*
* @example
* var v = cosd( NaN );
* // returns NaN
*/
declare function cosd( x: number ): number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,26 @@
*
* @param x - input value (in radians)
* @returns cotangent
*
* @example
* var v = cot( 0.0 );
* // returns Infinity
*
* @example
* var v = cot( 3.141592653589793/2.0 );
* // returns ~0.0
*
* @example
* var v = cot( -3.141592653589793/4.0 );
* // returns ~-1.0
*
* @example
* var v = cot( 3.141592653589793/4.0 );
* // returns ~1.0
*
* @example
* var v = cot( NaN );
* // returns NaN
*
* @example
* var v = cot( 0.0 );
* // returns Infinity
*
* @example
* var v = cot( 3.141592653589793/2.0 );
* // returns ~0.0
*
* @example
* var v = cot( -3.141592653589793/4.0 );
* // returns ~-1.0
*
* @example
* var v = cot( 3.141592653589793/4.0 );
* // returns ~1.0
*
* @example
* var v = cot( NaN );
* // returns NaN
*/
declare function cot( x: number ): number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@
*
* @param x - input value (in degrees)
* @returns cotangent
*
* @example
* var v = cotd( 0.0 );
* // returns Infinity
*
* @example
* var v = cotd( 60.0 );
* // returns ~0.58
*
* @example
* var v = cotd( 90.0 );
* // returns 0.0
*
* @example
* var v = cotd( NaN );
* // returns NaN
*
* @example
* var v = cotd( 0.0 );
* // returns Infinity
*
* @example
* var v = cotd( 60.0 );
* // returns ~0.58
*
* @example
* var v = cotd( 90.0 );
* // returns 0.0
*
* @example
* var v = cotd( NaN );
* // returns NaN
*/
declare function cotd( x: number ): number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import { Complex128 } from '@stdlib/types/complex';
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `cpolar`.
*/
* Interface describing `cpolar`.
*/
interface Cpolar {
/**
* Computes the absolute value and the phase of a double-precision complex floating-point number.
Expand Down
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ interface Namespace {
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = ns.acscdf( sqrtf( 2.0 ) );
* var v = ns.acscdf( sqrtf( 2.0 ) );
* // returns ~45.0
*
* @example
Expand Down Expand Up @@ -905,7 +905,7 @@ interface Namespace {
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = ns.asecdf( sqrtf( 2.0 ) );
* var v = ns.asecdf( sqrtf( 2.0 ) );
* // returns 45.0
*
* @example
Expand Down Expand Up @@ -1005,7 +1005,7 @@ interface Namespace {
* @example
* var sqrt = require( '@stdlib/math/base/special/sqrt' );
*
** var v = ns.asindf( sqrt( 3.0 ) / 2.0 );
* var v = ns.asindf( sqrt( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down Expand Up @@ -1037,7 +1037,7 @@ interface Namespace {
* @example
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
*
** var v = ns.asindf( sqrtf( 3.0 ) / 2.0 );
* var v = ns.asindf( sqrtf( 3.0 ) / 2.0 );
* // returns ~60.0
*
* @example
Expand Down Expand Up @@ -5790,7 +5790,7 @@ interface Namespace {
* - If `|n|` is greater than `78`, the function returns `NaN` as larger negaFibonacci numbers cannot be accurately represented due to limitations of double-precision floating-point format.
* - If not provided a non-positive integer value, the function returns `NaN`.
*
* @param - the negaFibonacci number to compute
* @param n - the negaFibonacci number to compute
* @returns negaFibonacci number
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* v = ellipe( NaN );
* // returns NaN
*/
declare function ellipe( x: number ): number;
declare function ellipe( m: number ): number;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* v = ellipk( NaN );
* // returns NaN
*/
declare function ellipk( x: number ): number;
declare function ellipk( m: number ): number;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `fresnel`.
*/
* Interface describing `fresnel`.
*/
interface Fresnel {
/**
* Computes the Fresnel integrals S(x) and C(x).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Inteface describing `frexp`.
*/
* Inteface describing `frexp`.
*/
interface Frexp {
/**
* Splits a double-precision floating-point number into a normalized fraction and an integer power of two.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing an interface for computing minimum and maximum values.
*/
interface MinMax {
* Interface describing an interface for computing minimum and maximum values.
*/
interface MinMax {
/**
* Returns the minimum and maximum values.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing an interface for computing minimum and maximum values.
*/
interface MinMaxN {
* Interface describing an interface for computing minimum and maximum values.
*/
interface MinMaxN {
/**
* Returns the minimum and maximum values.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `modf`.
*/
* Interface describing `modf`.
*/
interface Modf {
/**
* Decomposes a double-precision floating-point number into integral and fractional parts, each having the same type and sign as the input value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* - If `|n|` is greater than `78`, the function returns `NaN` as larger negaFibonacci numbers cannot be accurately represented due to limitations of double-precision floating-point format.
* - If not provided a non-positive integer value, the function returns `NaN`.
*
* @param - the negaFibonacci number to compute
* @param n - the negaFibonacci number to compute
* @returns negaFibonacci number
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `sici`.
*/
* Interface describing `sici`.
*/
interface Sici {
/**
* Computes the sine and cosine integrals.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import { Collection } from '@stdlib/types/array';

/**
* Interface describing `sincospi`.
*/
* Interface describing `sincospi`.
*/
interface SinCosPi {
/**
* Simultaneously computes the sine and cosine of a number times π.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Iterator = Iter | IterableIterator;
*
* // ...
*/
declare function iterBeta( y: Iterator | number, x: Iterator | number ): Iterator;
declare function iterBeta( x: Iterator | number, y: Iterator | number ): Iterator;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Iterator = Iter | IterableIterator;
*
* // ...
*/
declare function iterBetaln( y: Iterator | number, x: Iterator | number ): Iterator;
declare function iterBetaln( x: Iterator | number, y: Iterator | number ): Iterator;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ type Ternary = ( x: number, y: number, z: number ) => any;
*
* @param iter0 - first iterator
* @param iter1 - second iterator
* @param iter1 - third iterator
* @param iter2 - third iterator
* @param fcn - function which transforms iterated values
* @param options - options
* @param options.invalid - return value when an input iterator yields a non-numeric value
Expand Down
Loading

1 comment on commit b89c97c

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/accessors $\color{green}133/133$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}133/133$
$\color{green}+100.00\%$
array/base/arraylike2object $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
array/base/filled $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$
array/base/filled2d $\color{green}208/208$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}208/208$
$\color{green}+100.00\%$
array/base/filled3d $\color{green}216/216$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}216/216$
$\color{green}+100.00\%$
array/filled-by $\color{green}608/608$
$\color{green}+100.00\%$
$\color{green}87/87$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}608/608$
$\color{green}+100.00\%$
array/logspace $\color{green}105/105$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}105/105$
$\color{green}+100.00\%$
array/promotion-rules $\color{green}151/151$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}151/151$
$\color{green}+100.00\%$
array/to-iterator $\color{green}227/227$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}227/227$
$\color{green}+100.00\%$
assert/is-hex-string $\color{green}135/135$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}135/135$
$\color{green}+100.00\%$
blas/ext/base/gfill-by $\color{green}307/307$
$\color{green}+100.00\%$
$\color{green}23/23$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}307/307$
$\color{green}+100.00\%$
blas/tools/swap-factory $\color{green}244/244$
$\color{green}+100.00\%$
$\color{red}33/34$
$\color{green}+97.06\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}244/244$
$\color{green}+100.00\%$
complex/base/parse $\color{red}164/166$
$\color{green}+98.80\%$
$\color{red}29/30$
$\color{green}+96.67\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{red}164/166$
$\color{green}+98.80\%$
complex/float64 $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}114/114$
$\color{green}+100.00\%$
complex/float64/parse $\color{green}132/132$
$\color{green}+100.00\%$
$\color{green}16/16$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}132/132$
$\color{green}+100.00\%$
iter/cunone-by $\color{green}222/222$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}222/222$
$\color{green}+100.00\%$
math/base/ops/imuldw $\color{green}186/186$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}186/186$
$\color{green}+100.00\%$
math/base/ops/umuldw $\color{green}187/187$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}187/187$
$\color{green}+100.00\%$
math/base/special/acscdf $\color{green}197/197$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}197/197$
$\color{green}+100.00\%$
math/base/special/asecdf $\color{green}197/197$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}197/197$
$\color{green}+100.00\%$
math/base/special/asind $\color{green}185/185$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}185/185$
$\color{green}+100.00\%$
math/base/special/asindf $\color{green}186/186$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}186/186$
$\color{green}+100.00\%$
math/base/special/cosd $\color{green}179/179$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}179/179$
$\color{green}+100.00\%$
math/base/special/cot $\color{green}175/175$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}175/175$
$\color{green}+100.00\%$
math/base/special/cotd $\color{green}190/190$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}190/190$
$\color{green}+100.00\%$
math/base/special/cpolar $\color{green}212/212$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}212/212$
$\color{green}+100.00\%$
math/base/special $\color{green}2319/2319$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}2319/2319$
$\color{green}+100.00\%$
math/base/special/ellipe $\color{red}833/857$
$\color{green}+97.20\%$
$\color{red}59/71$
$\color{green}+83.10\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{red}833/857$
$\color{green}+97.20\%$
math/base/special/ellipk $\color{red}845/869$
$\color{green}+97.24\%$
$\color{red}59/71$
$\color{green}+83.10\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{red}845/869$
$\color{green}+97.24\%$
math/base/special/fresnel $\color{red}595/607$
$\color{green}+98.02\%$
$\color{red}28/36$
$\color{green}+77.78\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{red}595/607$
$\color{green}+98.02\%$
math/base/special/frexp $\color{green}329/329$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}329/329$
$\color{green}+100.00\%$
math/base/special/minmax $\color{green}195/195$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}195/195$
$\color{green}+100.00\%$
math/base/special/minmaxn $\color{green}267/267$
$\color{green}+100.00\%$
$\color{green}35/35$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}267/267$
$\color{green}+100.00\%$
math/base/special/modf $\color{green}305/305$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}305/305$
$\color{green}+100.00\%$
math/base/special/negafibonacci $\color{green}229/229$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}229/229$
$\color{green}+100.00\%$
math/base/special/sici $\color{red}850/874$
$\color{green}+97.25\%$
$\color{red}48/60$
$\color{green}+80.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{red}850/874$
$\color{green}+97.25\%$
math/base/special/sincospi $\color{green}296/296$
$\color{green}+100.00\%$
$\color{green}23/23$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}296/296$
$\color{green}+100.00\%$
math/iter/special/beta $\color{green}125/125$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}125/125$
$\color{green}+100.00\%$
math/iter/special/betaln $\color{green}125/125$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}125/125$
$\color{green}+100.00\%$
math/iter/tools/map3 $\color{green}353/353$
$\color{green}+100.00\%$
$\color{green}44/44$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}353/353$
$\color{green}+100.00\%$
math/strided/special/acot-by $\color{green}197/197$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}197/197$
$\color{green}+100.00\%$
ndarray/base/nullary-loop-interchange-order $\color{green}237/237$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}237/237$
$\color{green}+100.00\%$
ndarray/base/slice-dimension-from $\color{green}164/164$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}164/164$
$\color{green}+100.00\%$
ndarray/base/slice-dimension-to $\color{green}164/164$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}164/164$
$\color{green}+100.00\%$
ndarray/base/transpose $\color{green}145/145$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}145/145$
$\color{green}+100.00\%$
ndarray/iter/column-entries $\color{green}290/290$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}290/290$
$\color{green}+100.00\%$
ndarray/iter/matrix-entries $\color{green}291/291$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}291/291$
$\color{green}+100.00\%$
ndarray/iter/row-entries $\color{green}290/290$
$\color{green}+100.00\%$
$\color{green}27/27$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}290/290$
$\color{green}+100.00\%$
ndarray/slice-dimension-from $\color{green}174/174$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}174/174$
$\color{green}+100.00\%$
ndarray/slice-dimension-to $\color{green}174/174$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}174/174$
$\color{green}+100.00\%$
number/float32/base/normalize $\color{green}306/306$
$\color{green}+100.00\%$
$\color{green}14/14$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}306/306$
$\color{green}+100.00\%$
number/float64/base/normalize $\color{green}313/313$
$\color{green}+100.00\%$
$\color{green}13/13$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}313/313$
$\color{green}+100.00\%$
number/float64/base/to-words $\color{green}313/313$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}313/313$
$\color{green}+100.00\%$
stats/anova1 $\color{red}732/745$
$\color{green}+98.26\%$
$\color{red}61/65$
$\color{green}+93.85\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{red}732/745$
$\color{green}+98.26\%$
stats/padjust $\color{green}604/604$
$\color{green}+100.00\%$
$\color{green}66/66$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}604/604$
$\color{green}+100.00\%$
strided/base/strided2object $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
strided/dispatch-by $\color{red}452/478$
$\color{green}+94.56\%$
$\color{red}83/88$
$\color{green}+94.32\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{red}452/478$
$\color{green}+94.56\%$
string/base/stickycase $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
string/to-grapheme-cluster-iterator-right $\color{green}243/243$
$\color{green}+100.00\%$
$\color{green}30/30$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}243/243$
$\color{green}+100.00\%$
string/to-grapheme-cluster-iterator $\color{green}243/243$
$\color{green}+100.00\%$
$\color{green}30/30$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}243/243$
$\color{green}+100.00\%$
utils/async/group-by $\color{green}590/590$
$\color{green}+100.00\%$
$\color{green}78/78$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}590/590$
$\color{green}+100.00\%$
utils/async/if-else $\color{green}141/141$
$\color{green}+100.00\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}141/141$
$\color{green}+100.00\%$
utils/bifurcate-in $\color{green}585/585$
$\color{green}+100.00\%$
$\color{green}41/41$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}585/585$
$\color{green}+100.00\%$
utils/curry-right $\color{green}156/156$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}156/156$
$\color{green}+100.00\%$
utils $\color{green}2017/2017$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}2017/2017$
$\color{green}+100.00\%$
utils/every-in-by $\color{green}121/121$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}121/121$
$\color{green}+100.00\%$
utils/get-prototype-of $\color{green}254/254$
$\color{green}+100.00\%$
$\color{green}23/23$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}254/254$
$\color{green}+100.00\%$
utils/nary-function $\color{red}232/234$
$\color{green}+99.15\%$
$\color{red}15/16$
$\color{green}+93.75\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{red}232/234$
$\color{green}+99.15\%$
utils/object-inverse-by $\color{green}226/226$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}226/226$
$\color{green}+100.00\%$
utils/object-inverse $\color{green}182/182$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}182/182$
$\color{green}+100.00\%$
wasm/base/arrays2ptrs $\color{green}271/271$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}271/271$
$\color{green}+100.00\%$
wasm/base/strided2object $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.