Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ import emptyLike = require( './index' );
emptyLike( zeros( 'generic', sh, ord ), { 'dtype': 'generic' } ); // $ExpectType genericndarray<number>
}

// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type...
// The compiler throws an error if the function is provided a first argument which is not an ndarray...
{
emptyLike( '10' ); // $ExpectError
emptyLike( 10 ); // $ExpectError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import zerosLike = require( './index' );
zerosLike( zeros( 'generic', sh, ord ), { 'dtype': 'generic' } ); // $ExpectType genericndarray<number>
}

// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type...
// The compiler throws an error if the function is provided a first argument which is not an ndarray...
{
zerosLike( '10' ); // $ExpectError
zerosLike( 10 ); // $ExpectError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ var v = covarmtk( [ x, y, correction, meanx, meany ] );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ var v = dcovarmtk( [ x, y, correction, meanx, meany ] );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var v = dmeanstdev( [ x, out, correction ] );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. a one-dimensional input ndarray.
2. a one-dimensional output ndarray to store the [mean][arithmetic-mean] and [standard deviation][standard-deviation].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a one-dimensional output ndarray to store the mean and standard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. a one-dimensional input ndarray.
2. a zero-dimensional output ndarray containing a [results object][@stdlib/stats/base/ztest/one-sample/results/float64].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a zero-dimensional output ndarray containing a results object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ var v = scovarmtk( [ x, y, correction, meanx, meany ] );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. a one-dimensional input ndarray.
2. a zero-dimensional output ndarray containing a [results object][@stdlib/stats/base/ztest/one-sample/results/float32].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a zero-dimensional output ndarray containing a results object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. a one-dimensional input ndarray.
2. a zero-dimensional output ndarray containing a [results object][@stdlib/stats/base/ztest/one-sample/results/float64].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a zero-dimensional output ndarray containing a results object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var bool = ( v === out );

The function has the following parameters:

- **arrays**: array-like object containing the following ndarrays in order:
- **arrays**: array-like object containing the following ndarrays:

1. first one-dimensional input ndarray.
2. second one-dimensional input ndarray.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Parameters
----------
arrays: ArrayLikeObject<ndarray>
Array-like object containing the following ndarrays in order:
Array-like object containing the following ndarrays:

- first one-dimensional input ndarray.
- second one-dimensional input ndarray.
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@
* @example
* const buf = new Uint8Array( 8 );
*
* const z: Complex64Array = {
* const z: BooleanArray = {
* 'byteLength': 8,
* 'byteOffset': 0,
* 'BYTES_PER_ELEMENT': 1,
Expand Down Expand Up @@ -1708,7 +1708,7 @@
/**
* "Raw" (original) data type value.
*/
value: any;

Check warning on line 1711 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5168,7 +5168,7 @@
/**
* Value associated with a property (default: `undefined`).
*/
value?: any;

Check warning on line 5171 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5202,7 +5202,7 @@
* - When the property is accessed, the function is called without arguments and with `this` set to the object through which the property is accessed (note: this may **not** be the object on which the property is defined due to inheritance).
* - The return value will be used as the value of the property.
*/
get?(): any;

Check warning on line 5205 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* A function which serves as a setter for the property.
Expand All @@ -5212,7 +5212,7 @@
* - If omitted from a descriptor, a property value cannot be assigned.
* - When the property is assigned to, the function is called with one argument (the value being assigned to the property) and with `this` set to the object through which the property is assigned.
*/
set?( x: any ): void;

Check warning on line 5215 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}

/**
Expand Down Expand Up @@ -5364,7 +5364,7 @@
* @example
* const rand: PRNG = () => 3.14;
*/
type PRNG = ( ...args: Array<any> ) => number;

Check warning on line 5367 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* A pseudorandom number generator (PRNG) seed for the 32-bit Mersenne Twister (MT19937) PRNG.
Expand Down Expand Up @@ -5584,7 +5584,7 @@
* @param values - input array containing values to write
* @returns boolean indicating whether the underlying WebAssembly memory instance has enough capacity
*/
hasCapacity( byteOffset: number, values: Collection | AccessorArrayLike<any> ): boolean;

Check warning on line 5587 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Returns a boolean indicating whether a provided list of values is a view of the underlying memory of the WebAssembly module.
Expand All @@ -5592,7 +5592,7 @@
* @param values - input array
* @returns boolean indicating whether the list is a memory view
*/
isView( values: Collection | AccessorArrayLike<any> ): boolean;

Check warning on line 5595 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Writes values to the underlying WebAssembly memory instance.
Expand All @@ -5607,7 +5607,7 @@
* @param values - input array containing values to write
* @returns module wrapper instance
*/
write( byteOffset: number, values: Collection | AccessorArrayLike<any> ): ModuleWrapper;

Check warning on line 5610 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type

/**
* Reads values from the underlying WebAssembly memory instance.
Expand All @@ -5622,6 +5622,6 @@
* @param out - output array
* @returns module wrapper instance
*/
read( byteOffset: number, out: Collection | AccessorArrayLike<any> ): ModuleWrapper;

Check warning on line 5625 in lib/node_modules/@stdlib/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
}
}
Loading