Skip to content

Commit

Permalink
chore: resolve lint errors in TS files
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 28, 2024
1 parent b89c97c commit abf0407
Show file tree
Hide file tree
Showing 74 changed files with 130 additions and 132 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ import getter = require( './index' );
/**
* Returns an array-like object supporting the get/set protocol.
*
* @return array-like object
* @returns array-like object
*/
function accessorArray(): AccessorArrayLike<number> {
let arr: AccessorArrayLike<number>;
arr = {
const arr: AccessorArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand Down
10 changes: 4 additions & 6 deletions lib/node_modules/@stdlib/array/base/accessors/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ import accessors = require( './index' );
/**
* Returns an array-like object supporting the get/set protocol.
*
* @return array-like object
* @returns array-like object
*/
function accessorArray(): AccessorArrayLike<number> {
let arr: AccessorArrayLike<number>;
arr = {
const arr: AccessorArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand All @@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
/**
* Returns an array-like object.
*
* @return array-like object
* @returns array-like object
*/
function arrayLike(): ArrayLike<number> {
let arr: ArrayLike<number>;
arr = {
const arr: ArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ import arraylike2object = require( './index' );
/**
* Returns an array-like object supporting the get/set protocol.
*
* @return array-like object
* @returns array-like object
*/
function accessorArray(): AccessorArrayLike<number> {
let arr: AccessorArrayLike<number>;
arr = {
const arr: AccessorArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand All @@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
/**
* Returns an array-like object.
*
* @return array-like object
* @returns array-like object
*/
function arrayLike(): ArrayLike<number> {
let arr: ArrayLike<number>;
arr = {
const arr: ArrayLike<number> = {
'0': 1,
'1': 2,
'2': 3,
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/array/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ interface Namespace {
* '2': 3,
* '4': 4,
* 'length': 4
};
* };
* var obj = ns.accessors( x );
* // returns {...}
*
Expand Down Expand Up @@ -385,7 +385,7 @@ interface Namespace {
* '2': 3,
* '4': 4,
* 'length': 4
};
* };
* var obj = ns.arraylike2object( x );
* // returns {...}
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape2D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape3D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape4D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape4D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape5D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape5D } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import flattenBy = require( './index' );
/**
* Identity function.
*
* @param v - input value
* @param value - input value
* @returns input value
*/
function identity<T>( value: T ): T {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import flatten2dBy = require( './index' );
/**
* Identity function.
*
* @param v - input value
* @param value - input value
* @returns input value
*/
function identity<T>( value: T ): T {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import flatten3dBy = require( './index' );
/**
* Identity function.
*
* @param v - input value
* @param value - input value
* @returns input value
*/
function identity<T>( value: T ): T {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import flatten4dBy = require( './index' );
/**
* Identity function.
*
* @param v - input value
* @param value - input value
* @returns input value
*/
function identity<T>( value: T ): T {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import flatten5dBy = require( './index' );
/**
* Identity function.
*
* @param v - input value
* @param value - input value
* @returns input value
*/
function identity<T>( value: T ): T {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import strided2array = require( './index' );
{
const x = [ 1.0, 2.0, 3.0, 4.0 ];

strided2array( x.length, x, 1, 0 ); // $ExpectType Array<number>
strided2array( x.length, x, 1, 0 ); // $ExpectType number[]
}

// The compiler throws an error if the function is provided a first argument which is not a number...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* var arr = logspace( 0, 2, 6 );
* // returns [ 1, ~2.5, ~6.31, ~15.85, ~39.81, 100 ]
*/
declare function logspace( x1: number, x2: number, len: number ): Array<number>;
declare function logspace( a: number, b: number, len: number ): Array<number>;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,22 @@ import mskrejectMap = require( './index' );

// FUNCTIONS //

/**
* Multiplies a value by two.
*
* @param val - input value
* @returns result
*/
function timesTwo( val: number ): number {
return val * 2;
}

/**
* Identity function.
*
* @param val - input value
* @returns input value
*/
function identity( val: string ): string {
return val;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/// <reference types="@stdlib/types"/>

import { Collection } from '@stdlib/types/array';
import { Shape } from '@stdlib/types/ndarray';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/// <reference types="@stdlib/types"/>

import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter';
import { Iterator as Iter, IterableIterator, TypedIterator } from '@stdlib/types/iter';
import { ArrayLike, RealOrComplexTypedArray, Complex128Array as Complex128ArrayInterface } from '@stdlib/types/array';
import { ComplexLike, Complex128 } from '@stdlib/types/complex';
import ArrayBuffer = require( '@stdlib/array/buffer' );
Expand All @@ -38,7 +38,7 @@ interface LocaleOptions<T = unknown> {
* Configuration property.
*/
[ key: string | symbol | number ]: T | undefined;
};
}

/**
* Callback invoked for each element in a source object.
Expand Down Expand Up @@ -1319,7 +1319,7 @@ declare class Complex128Array implements Complex128ArrayInterface {
* im = imag( z );
* // returns -3.0
*/
subarray( begin?: number, end?: number ): Complex64Array;
subarray( begin?: number, end?: number ): Complex128Array;

/**
* Serializes an array as a locale-specific string.
Expand Down
24 changes: 12 additions & 12 deletions lib/node_modules/@stdlib/array/filled-by/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,23 +93,23 @@ function clbk( i: number ): number {
filledarrayBy( it, 'uint8c', clbk, {} ); // $ExpectType ArrayOrTypedArray

const buf = new ArrayBuffer( 32 );
filledarrayBy( buf, clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray

filledarrayBy( buf, 'uint32', clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 'uint32', clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 'uint32', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, 'uint32', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray

filledarrayBy( buf, 8, clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, 8, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray

filledarrayBy( buf, 8, 'uint16', clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 'uint16', clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 'uint16', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, 8, 'uint16', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray

filledarrayBy( buf, 8, 2, clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 2, clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 2, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, 8, 2, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray

filledarrayBy( buf, 8, 2, 'int16', clbk ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 2, 'int16', clbk, {} ); // $ExpectType RealOrComplexTypedArray
filledarrayBy( buf, 8, 2, 'int16', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
filledarrayBy( buf, 8, 2, 'int16', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
}

// The compiler throws an error if a callback function argument is not a function...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/// <reference types="@stdlib/types"/>

import { TypedIterator as Iter, TypedIterableIterator } from '@stdlib/types/iter';
import { TypedIterator as Iter } from '@stdlib/types/iter';

This comment has been minimized.

Copy link
@kgryte

kgryte Sep 28, 2024

Member

@Planeshifter I think this should have been TypedIterableIterator as IterableIterator given L27.

This comment has been minimized.

Copy link
@Planeshifter

Planeshifter Sep 29, 2024

Author Member

Changed.

import { Collection } from '@stdlib/types/array';

// Define a union type representing both iterable and non-iterable iterators:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ declare function scalar2array<T = unknown>( value: T, dtype: 'generic' ): Array<
* Returns a single-element array containing a provided scalar value.
*
* @param value - scalar value
* @param dtype - output array data type
* @returns output array
*
* @example
Expand All @@ -225,7 +224,6 @@ declare function scalar2array( value: number ): Float64Array;
* Returns a single-element array containing a provided scalar value.
*
* @param value - scalar value
* @param dtype - output array data type
* @returns output array
*
* @example
Expand All @@ -238,7 +236,6 @@ declare function scalar2array( value: boolean ): BooleanArray;
* Returns a single-element array containing a provided scalar value.
*
* @param value - scalar value
* @param dtype - output array data type
* @returns output array
*
* @example
Expand All @@ -255,7 +252,6 @@ declare function scalar2array( value: Complex64 ): Complex64Array;
* Returns a single-element array containing a provided scalar value.
*
* @param value - scalar value
* @param dtype - output array data type
* @returns output array
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ declare function nansLike( x: AnyArray, dtype: 'complex128' ): Complex128Array;
/**
* Creates an array filled with NaNs and having the same length as a provided input array.
*
## Notes
* ## Notes
*
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
*
Expand Down Expand Up @@ -188,7 +188,7 @@ declare function nansLike( x: Float32Array, dtype?: DataType ): Float32Array;
* - `complex64`: single-precision complex floating-point numbers
* - `generic`: generic JavaScript values
*
## Notes
* ## Notes
*
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
*
Expand Down Expand Up @@ -218,7 +218,7 @@ declare function nansLike( x: Complex128Array, dtype?: DataType ): Complex128Arr
* - `complex64`: single-precision complex floating-point numbers
* - `generic`: generic JavaScript values
*
## Notes
* ## Notes
*
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary;
* function fcn( v ) {
* return v * 10.0;
* }
*
* var iter = arrayview2iterator( [ 1, 2, 3, 4 ], fcn );
*
* var v = iter.next().value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* limitations under the License.
*/

import isComplexLike = require( './index' );
import Complex128 = require( '@stdlib/complex/float64/ctor' );
import Complex64 = require( '@stdlib/complex/float32/ctor' );
import isComplexLike = require( './index' );


// TESTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* limitations under the License.
*/

import isComplex = require( './index' );
import Complex128 = require( '@stdlib/complex/float64/ctor' );
import Complex64 = require( '@stdlib/complex/float32/ctor' );
import isComplex = require( './index' );


// TESTS //
Expand Down
Loading

1 comment on commit abf0407

@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/accessor-getter $\color{green}208/208$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}208/208$
$\color{green}+100.00\%$
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 $\color{green}1635/1635$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}1635/1635$
$\color{green}+100.00\%$
array/base/filled2d-by $\color{green}104/104$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}104/104$
$\color{green}+100.00\%$
array/base/filled3d-by $\color{green}112/112$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}112/112$
$\color{green}+100.00\%$
array/base/filled4d-by $\color{green}120/120$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}120/120$
$\color{green}+100.00\%$
array/base/filled4d $\color{green}224/224$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}224/224$
$\color{green}+100.00\%$
array/base/filled5d-by $\color{green}128/128$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}128/128$
$\color{green}+100.00\%$
array/base/filled5d $\color{green}232/232$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}232/232$
$\color{green}+100.00\%$
array/base/flatten-by $\color{green}384/384$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}384/384$
$\color{green}+100.00\%$
array/base/flatten2d-by $\color{green}275/275$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}275/275$
$\color{green}+100.00\%$
array/base/flatten3d-by $\color{green}296/296$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}296/296$
$\color{green}+100.00\%$
array/base/flatten4d-by $\color{green}315/315$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}315/315$
$\color{green}+100.00\%$
array/base/flatten5d-by $\color{green}333/333$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}333/333$
$\color{green}+100.00\%$
array/base/from-strided $\color{green}111/111$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}111/111$
$\color{green}+100.00\%$
array/base/logspace $\color{green}105/105$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}105/105$
$\color{green}+100.00\%$
array/base/mskreject-map $\color{green}373/373$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}373/373$
$\color{green}+100.00\%$
array/base/zerosnd $\color{green}322/322$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}322/322$
$\color{green}+100.00\%$
array/complex128 $\color{red}3317/3327$
$\color{green}+99.70\%$
$\color{red}528/536$
$\color{green}+98.51\%$
$\color{green}54/54$
$\color{green}+100.00\%$
$\color{red}3317/3327$
$\color{green}+99.70\%$
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/from-iterator $\color{green}189/189$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}189/189$
$\color{green}+100.00\%$
array/from-scalar $\color{green}158/158$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}158/158$
$\color{green}+100.00\%$
array/nans-like $\color{red}129/131$
$\color{green}+98.47\%$
$\color{red}14/15$
$\color{green}+93.33\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{red}129/131$
$\color{green}+98.47\%$
array/to-view-iterator $\color{red}278/279$
$\color{green}+99.64\%$
$\color{red}52/53$
$\color{green}+98.11\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{red}278/279$
$\color{green}+99.64\%$
assert/is-complex-like $\color{green}109/109$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}109/109$
$\color{green}+100.00\%$
assert/is-complex $\color{green}107/107$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}107/107$
$\color{green}+100.00\%$
assert/is-prng-like $\color{green}100/100$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}100/100$
$\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/float32 $\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/float32/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\%$
complex/promotion-rules $\color{green}148/148$
$\color{green}+100.00\%$
$\color{green}11/11$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}148/148$
$\color{green}+100.00\%$
datasets/afinn-96 $\color{green}146/146$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}146/146$
$\color{green}+100.00\%$
error/tools $\color{green}105/105$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}105/105$
$\color{green}+100.00\%$
error/tools/fmtprodmsg-factory $\color{green}225/225$
$\color{green}+100.00\%$
$\color{green}19/19$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}225/225$
$\color{green}+100.00\%$
error/tools/fmtprodmsg $\color{red}86/88$
$\color{green}+97.73\%$
$\color{red}3/4$
$\color{green}+75.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{red}86/88$
$\color{green}+97.73\%$
iter/pipeline-thunk $\color{green}134/134$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}134/134$
$\color{green}+100.00\%$
lapack/base/dlamch $\color{green}154/154$
$\color{green}+100.00\%$
$\color{green}23/23$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}154/154$
$\color{green}+100.00\%$
math/base/special/rempio2 $\color{red}893/907$
$\color{green}+98.46\%$
$\color{red}81/86$
$\color{green}+94.19\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{red}893/907$
$\color{green}+98.46\%$
ndarray/base/broadcast-array $\color{green}211/211$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}211/211$
$\color{green}+100.00\%$
ndarray/base/for-each $\color{red}3993/8525$
$\color{green}+46.84\%$
$\color{green}44/44$
$\color{green}+100.00\%$
$\color{red}0/43$
$\color{green}+0.00\%$
$\color{red}3993/8525$
$\color{green}+46.84\%$
ndarray/base/map $\color{green}10996/10996$
$\color{green}+100.00\%$
$\color{green}693/693$
$\color{green}+100.00\%$
$\color{green}43/43$
$\color{green}+100.00\%$
$\color{green}10996/10996$
$\color{green}+100.00\%$
ndarray/base/maybe-broadcast-array $\color{green}180/180$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}180/180$
$\color{green}+100.00\%$
ndarray/base/ndarraylike2ndarray $\color{green}110/110$
$\color{green}+100.00\%$
$\color{red}3/4$
$\color{green}+75.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}110/110$
$\color{green}+100.00\%$
ndarray/base/ndarraylike2object $\color{green}150/150$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}150/150$
$\color{green}+100.00\%$
ndarray/base/nullary $\color{green}8520/8520$
$\color{green}+100.00\%$
$\color{green}670/670$
$\color{green}+100.00\%$
$\color{green}43/43$
$\color{green}+100.00\%$
$\color{green}8520/8520$
$\color{green}+100.00\%$
ndarray/base/serialize-meta-data $\color{green}507/507$
$\color{green}+100.00\%$
$\color{red}29/31$
$\color{green}+93.55\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}507/507$
$\color{green}+100.00\%$
ndarray/base/unary-by $\color{red}5042/11128$
$\color{green}+45.31\%$
$\color{green}44/44$
$\color{green}+100.00\%$
$\color{red}0/43$
$\color{green}+0.00\%$
$\color{red}5042/11128$
$\color{green}+45.31\%$
ndarray/base/unary $\color{red}4829/10631$
$\color{green}+45.42\%$
$\color{green}44/44$
$\color{green}+100.00\%$
$\color{red}0/43$
$\color{green}+0.00\%$
$\color{red}4829/10631$
$\color{green}+45.42\%$
ndarray/dispatch $\color{green}399/399$
$\color{green}+100.00\%$
$\color{green}63/63$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}399/399$
$\color{green}+100.00\%$
ndarray/ind2sub $\color{green}328/328$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}328/328$
$\color{green}+100.00\%$
ndarray/ndarraylike2ndarray $\color{green}143/143$
$\color{green}+100.00\%$
$\color{red}7/8$
$\color{green}+87.50\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}143/143$
$\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\%$
ndarray/slice $\color{green}220/220$
$\color{green}+100.00\%$
$\color{green}25/25$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}220/220$
$\color{green}+100.00\%$
stats/base/dists/degenerate/ctor $\color{green}495/495$
$\color{green}+100.00\%$
$\color{green}30/30$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}495/495$
$\color{green}+100.00\%$
strided/base/map-by2 $\color{green}608/608$
$\color{green}+100.00\%$
$\color{green}42/42$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}608/608$
$\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\%$
strided/dispatch $\color{green}461/461$
$\color{green}+100.00\%$
$\color{green}109/109$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}461/461$
$\color{green}+100.00\%$
string/base $\color{green}546/546$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}546/546$
$\color{green}+100.00\%$
string/base/format-interpolate $\color{red}709/736$
$\color{green}+96.33\%$
$\color{red}123/139$
$\color{green}+88.49\%$
$\color{green}12/12$
$\color{green}+100.00\%$
$\color{red}709/736$
$\color{green}+96.33\%$
string $\color{green}550/550$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}550/550$
$\color{green}+100.00\%$
string/format $\color{green}149/149$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}149/149$
$\color{green}+100.00\%$
utils/async/compose $\color{green}209/209$
$\color{green}+100.00\%$
$\color{green}15/15$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}209/209$
$\color{green}+100.00\%$
utils/async/every-by-right $\color{green}546/546$
$\color{green}+100.00\%$
$\color{green}63/63$
$\color{green}+100.00\%$
$\color{green}8/8$
$\color{green}+100.00\%$
$\color{green}546/546$
$\color{green}+100.00\%$
utils/entries $\color{green}111/111$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}111/111$
$\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/group $\color{green}253/253$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}253/253$
$\color{green}+100.00\%$
utils/key-by $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
utils/map-reduce $\color{green}413/413$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}413/413$
$\color{green}+100.00\%$
utils/reduce $\color{green}385/385$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}385/385$
$\color{green}+100.00\%$
utils/values-in $\color{green}114/114$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}114/114$
$\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.