Skip to content
  • Sponsor stdlib-js/array

  • Notifications You must be signed in to change notification settings
  • Fork 0

Commit 587f3db

Browse files
committedSep 28, 2024·
Auto-generated commit
1 parent 5eb1aa0 commit 587f3db

File tree

26 files changed

+52
-55
lines changed

26 files changed

+52
-55
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
649649

650650
<details>
651651

652+
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
652653
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_
653654
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
654655
- [`fbe6651`](https://github.com/stdlib-js/stdlib/commit/fbe6651766e6c9bf9dd941c08fbefb2cab03de1c) - **feat:** add `Float32ArrayLE` to namespace _(by Athan Reines)_

‎base/accessor-getter/docs/types/test.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import getter = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,

‎base/accessors/docs/types/test.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import accessors = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,
@@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
4948
/**
5049
* Returns an array-like object.
5150
*
52-
* @return array-like object
51+
* @returns array-like object
5352
*/
5453
function arrayLike(): ArrayLike<number> {
55-
let arr: ArrayLike<number>;
56-
arr = {
54+
const arr: ArrayLike<number> = {
5755
'0': 1,
5856
'1': 2,
5957
'2': 3,

‎base/arraylike2object/docs/types/test.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ import arraylike2object = require( './index' );
2626
/**
2727
* Returns an array-like object supporting the get/set protocol.
2828
*
29-
* @return array-like object
29+
* @returns array-like object
3030
*/
3131
function accessorArray(): AccessorArrayLike<number> {
32-
let arr: AccessorArrayLike<number>;
33-
arr = {
32+
const arr: AccessorArrayLike<number> = {
3433
'0': 1,
3534
'1': 2,
3635
'2': 3,
@@ -49,11 +48,10 @@ function accessorArray(): AccessorArrayLike<number> {
4948
/**
5049
* Returns an array-like object.
5150
*
52-
* @return array-like object
51+
* @returns array-like object
5352
*/
5453
function arrayLike(): ArrayLike<number> {
55-
let arr: ArrayLike<number>;
56-
arr = {
54+
const arr: ArrayLike<number> = {
5755
'0': 1,
5856
'1': 2,
5957
'2': 3,

‎base/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ interface Namespace {
284284
* '2': 3,
285285
* '4': 4,
286286
* 'length': 4
287-
};
287+
* };
288288
* var obj = ns.accessors( x );
289289
* // returns {...}
290290
*
@@ -385,7 +385,7 @@ interface Namespace {
385385
* '2': 3,
386386
* '4': 4,
387387
* 'length': 4
388-
};
388+
* };
389389
* var obj = ns.arraylike2object( x );
390390
* // returns {...}
391391
*

‎base/filled2d-by/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape2D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/filled3d-by/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape3D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/filled4d-by/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape4D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/filled4d/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape4D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/filled5d-by/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape5D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/filled5d/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape5D } from '@stdlib/types/ndarray';
2524

2625
/**

‎base/flatten-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import flattenBy = require( './index' );
2121
/**
2222
* Identity function.
2323
*
24-
* @param v - input value
24+
* @param value - input value
2525
* @returns input value
2626
*/
2727
function identity<T>( value: T ): T {

‎base/flatten2d-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import flatten2dBy = require( './index' );
2121
/**
2222
* Identity function.
2323
*
24-
* @param v - input value
24+
* @param value - input value
2525
* @returns input value
2626
*/
2727
function identity<T>( value: T ): T {

‎base/flatten3d-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import flatten3dBy = require( './index' );
2121
/**
2222
* Identity function.
2323
*
24-
* @param v - input value
24+
* @param value - input value
2525
* @returns input value
2626
*/
2727
function identity<T>( value: T ): T {

‎base/flatten4d-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import flatten4dBy = require( './index' );
2121
/**
2222
* Identity function.
2323
*
24-
* @param v - input value
24+
* @param value - input value
2525
* @returns input value
2626
*/
2727
function identity<T>( value: T ): T {

‎base/flatten5d-by/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import flatten5dBy = require( './index' );
2121
/**
2222
* Identity function.
2323
*
24-
* @param v - input value
24+
* @param value - input value
2525
* @returns input value
2626
*/
2727
function identity<T>( value: T ): T {

‎base/from-strided/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import strided2array = require( './index' );
2525
{
2626
const x = [ 1.0, 2.0, 3.0, 4.0 ];
2727

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

3131
// The compiler throws an error if the function is provided a first argument which is not a number...

‎base/logspace/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var arr = logspace( 0, 2, 6 );
3131
* // returns [ 1, ~2.5, ~6.31, ~15.85, ~39.81, 100 ]
3232
*/
33-
declare function logspace( x1: number, x2: number, len: number ): Array<number>;
33+
declare function logspace( a: number, b: number, len: number ): Array<number>;
3434

3535

3636
// EXPORTS //

‎base/mskreject-map/docs/types/test.ts

+12
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,22 @@ import mskrejectMap = require( './index' );
2121

2222
// FUNCTIONS //
2323

24+
/**
25+
* Multiplies a value by two.
26+
*
27+
* @param val - input value
28+
* @returns result
29+
*/
2430
function timesTwo( val: number ): number {
2531
return val * 2;
2632
}
2733

34+
/**
35+
* Identity function.
36+
*
37+
* @param val - input value
38+
* @returns input value
39+
*/
2840
function identity( val: string ): string {
2941
return val;
3042
}

‎base/zerosnd/docs/types/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

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

23-
import { Collection } from '@stdlib/types/array';
2423
import { Shape } from '@stdlib/types/ndarray';
2524

2625
/**

‎complex128/docs/types/index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

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

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

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

13241324
/**
13251325
* Serializes an array as a locale-specific string.

‎filled-by/docs/types/test.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ function clbk( i: number ): number {
9393
filledarrayBy( it, 'uint8c', clbk, {} ); // $ExpectType ArrayOrTypedArray
9494

9595
const buf = new ArrayBuffer( 32 );
96-
filledarrayBy( buf, clbk ); // $ExpectType RealOrComplexTypedArray
97-
filledarrayBy( buf, clbk, {} ); // $ExpectType RealOrComplexTypedArray
96+
filledarrayBy( buf, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
97+
filledarrayBy( buf, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
9898

99-
filledarrayBy( buf, 'uint32', clbk ); // $ExpectType RealOrComplexTypedArray
100-
filledarrayBy( buf, 'uint32', clbk, {} ); // $ExpectType RealOrComplexTypedArray
99+
filledarrayBy( buf, 'uint32', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
100+
filledarrayBy( buf, 'uint32', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
101101

102-
filledarrayBy( buf, 8, clbk ); // $ExpectType RealOrComplexTypedArray
103-
filledarrayBy( buf, 8, clbk, {} ); // $ExpectType RealOrComplexTypedArray
102+
filledarrayBy( buf, 8, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
103+
filledarrayBy( buf, 8, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
104104

105-
filledarrayBy( buf, 8, 'uint16', clbk ); // $ExpectType RealOrComplexTypedArray
106-
filledarrayBy( buf, 8, 'uint16', clbk, {} ); // $ExpectType RealOrComplexTypedArray
105+
filledarrayBy( buf, 8, 'uint16', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
106+
filledarrayBy( buf, 8, 'uint16', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
107107

108-
filledarrayBy( buf, 8, 2, clbk ); // $ExpectType RealOrComplexTypedArray
109-
filledarrayBy( buf, 8, 2, clbk, {} ); // $ExpectType RealOrComplexTypedArray
108+
filledarrayBy( buf, 8, 2, clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
109+
filledarrayBy( buf, 8, 2, clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
110110

111-
filledarrayBy( buf, 8, 2, 'int16', clbk ); // $ExpectType RealOrComplexTypedArray
112-
filledarrayBy( buf, 8, 2, 'int16', clbk, {} ); // $ExpectType RealOrComplexTypedArray
111+
filledarrayBy( buf, 8, 2, 'int16', clbk ); // $ExpectType RealOrComplexTypedArray | BooleanArray
112+
filledarrayBy( buf, 8, 2, 'int16', clbk, {} ); // $ExpectType RealOrComplexTypedArray | BooleanArray
113113
}
114114

115115
// The compiler throws an error if a callback function argument is not a function...

‎from-iterator/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

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

23-
import { TypedIterator as Iter, TypedIterableIterator } from '@stdlib/types/iter';
23+
import { TypedIterator as Iter } from '@stdlib/types/iter';
2424
import { Collection } from '@stdlib/types/array';
2525

2626
// Define a union type representing both iterable and non-iterable iterators:

‎from-scalar/docs/types/index.d.ts

-4
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ declare function scalar2array<T = unknown>( value: T, dtype: 'generic' ): Array<
212212
* Returns a single-element array containing a provided scalar value.
213213
*
214214
* @param value - scalar value
215-
* @param dtype - output array data type
216215
* @returns output array
217216
*
218217
* @example
@@ -225,7 +224,6 @@ declare function scalar2array( value: number ): Float64Array;
225224
* Returns a single-element array containing a provided scalar value.
226225
*
227226
* @param value - scalar value
228-
* @param dtype - output array data type
229227
* @returns output array
230228
*
231229
* @example
@@ -238,7 +236,6 @@ declare function scalar2array( value: boolean ): BooleanArray;
238236
* Returns a single-element array containing a provided scalar value.
239237
*
240238
* @param value - scalar value
241-
* @param dtype - output array data type
242239
* @returns output array
243240
*
244241
* @example
@@ -255,7 +252,6 @@ declare function scalar2array( value: Complex64 ): Complex64Array;
255252
* Returns a single-element array containing a provided scalar value.
256253
*
257254
* @param value - scalar value
258-
* @param dtype - output array data type
259255
* @returns output array
260256
*
261257
* @example

‎nans-like/docs/types/index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ declare function nansLike( x: AnyArray, dtype: 'complex128' ): Complex128Array;
8888
/**
8989
* Creates an array filled with NaNs and having the same length as a provided input array.
9090
*
91-
## Notes
91+
* ## Notes
9292
*
9393
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
9494
*
@@ -188,7 +188,7 @@ declare function nansLike( x: Float32Array, dtype?: DataType ): Float32Array;
188188
* - `complex64`: single-precision complex floating-point numbers
189189
* - `generic`: generic JavaScript values
190190
*
191-
## Notes
191+
* ## Notes
192192
*
193193
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
194194
*
@@ -218,7 +218,7 @@ declare function nansLike( x: Complex128Array, dtype?: DataType ): Complex128Arr
218218
* - `complex64`: single-precision complex floating-point numbers
219219
* - `generic`: generic JavaScript values
220220
*
221-
## Notes
221+
* ## Notes
222222
*
223223
* - Each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
224224
*

‎to-view-iterator/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary;
8282
* function fcn( v ) {
8383
* return v * 10.0;
8484
* }
85-
85+
*
8686
* var iter = arrayview2iterator( [ 1, 2, 3, 4 ], fcn );
8787
*
8888
* var v = iter.next().value;

0 commit comments

Comments
 (0)
Please sign in to comment.