Skip to content

Commit 5eb1aa0

Browse files
committed
Auto-generated commit
1 parent 8892aea commit 5eb1aa0

File tree

10 files changed

+54
-12
lines changed

10 files changed

+54
-12
lines changed

CHANGELOG.md

+47-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-09-27)
7+
## Unreleased (2024-09-28)
88

99
<section class="packages">
1010

@@ -323,6 +323,50 @@ This release closes the following issue:
323323

324324
<!-- /.package -->
325325

326+
<section class="package" id="array-base-filled2d-unreleased">
327+
328+
#### [@stdlib/array/base/filled2d](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/filled2d)
329+
330+
<details>
331+
332+
<section class="bug-fixes">
333+
334+
##### Bug Fixes
335+
336+
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - remove unused imports from TS declaration file
337+
338+
</section>
339+
340+
<!-- /.bug-fixes -->
341+
342+
</details>
343+
344+
</section>
345+
346+
<!-- /.package -->
347+
348+
<section class="package" id="array-base-filled3d-unreleased">
349+
350+
#### [@stdlib/array/base/filled3d](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/filled3d)
351+
352+
<details>
353+
354+
<section class="bug-fixes">
355+
356+
##### Bug Fixes
357+
358+
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - remove unused imports from TS declaration file
359+
360+
</section>
361+
362+
<!-- /.bug-fixes -->
363+
364+
</details>
365+
366+
</section>
367+
368+
<!-- /.package -->
369+
326370
<section class="package" id="array-base-nulls-unreleased">
327371

328372
#### [@stdlib/array/base/nulls](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/nulls)
@@ -605,6 +649,8 @@ A total of 7 people contributed to this release. Thank you to the following cont
605649

606650
<details>
607651

652+
- [`7f368f6`](https://github.com/stdlib-js/stdlib/commit/7f368f6c3f4cea444a304a62616cea36a5f143eb) - **fix:** remove unused imports from TS declaration file _(by Philipp Burckhardt)_
653+
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
608654
- [`fbe6651`](https://github.com/stdlib-js/stdlib/commit/fbe6651766e6c9bf9dd941c08fbefb2cab03de1c) - **feat:** add `Float32ArrayLE` to namespace _(by Athan Reines)_
609655
- [`4f1f2dd`](https://github.com/stdlib-js/stdlib/commit/4f1f2dd87a883e01b5e072b77c1443007051c1d5) - **feat:** add `array/little-endian-float32` _(by Athan Reines)_
610656
- [`65b1756`](https://github.com/stdlib-js/stdlib/commit/65b175691d20f64bdc5410232c5900b0bb2a8f1e) - **feat:** add `Float32ArrayFE` to namespace _(by Athan Reines)_

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ declare function accessors<T = unknown>( x: Array<T> ): GenericAccessorObject<T>
874874
* '2': 3,
875875
* '4': 4,
876876
* 'length': 4
877-
};
877+
* };
878878
* var obj = accessors( x );
879879
* // returns {...}
880880
*

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ declare function arraylike2object<T = unknown>( x: Array<T> ): GenericAccessorOb
10161016
* '2': 3,
10171017
* '4': 4,
10181018
* 'length': 4
1019-
};
1019+
* };
10201020
* var obj = arraylike2object( x );
10211021
* // returns {...}
10221022
*

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Returns a filled "generic" array.
2323
*
24-
* @param value - fill value
24+
* @param value - fill value,
2525
* @param len - array length
2626
* @returns output array
2727
*

base/filled2d/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/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
/**

filled-by/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ declare function filledarrayBy( array: Collection, dtype: DataType, clbk: Callba
151151
* var arr = filledarrayBy( it, constantFunction( 1.0 ) );
152152
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
153153
*/
154-
declare function filledarrayBy( iterable: IterableIterator, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // eslint-disable-line @typescript-eslint/unified-signatures
154+
declare function filledarrayBy( iterable: IterableIterator, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // eslint-disable-line @typescript-eslint/unified-signatures
155155

156156
/**
157157
* Creates a filled array from an iterable according to a callback function.
@@ -172,7 +172,7 @@ declare function filledarrayBy( iterable: IterableIterator, callback: Callback,
172172
* var arr = filledarrayBy( it, 'float64', constantFunction( 1.0 ) );
173173
* // returns <Float64Array>[ 1.0, 1.0, 1.0 ]
174174
*/
175-
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, callback: Callback, thisArg?: any ): ArrayOrTypedArray; // eslint-disable-line @typescript-eslint/unified-signatures
175+
declare function filledarrayBy( iterable: IterableIterator, dtype: DataType, clbk: Callback, thisArg?: any ): ArrayOrTypedArray; // eslint-disable-line @typescript-eslint/unified-signatures
176176

177177
/**
178178
* Returns a filled typed array view of an `ArrayBuffer` according to a provided callback function.

logspace/docs/types/index.d.ts

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

3636

3737
// EXPORTS //

promotion-rules/docs/types/index.d.ts

-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ declare function promotionRules( dtype1: string, dtype2: string ): null;
7878
/**
7979
* Returns a type promotion table displaying array data types with the smallest size and closest "kind" to which array data types can be safely cast.
8080
*
81-
* @param dtype1 - array data type
82-
* @param dtype2 - array data type
8381
* @returns promotion rule table
8482
*
8583
* @example

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ type MapFunction = Nullary | Unary | Binary | Ternary;
7474
* Returns an iterator which iterates over each element in an array-like object.
7575
*
7676
* @param src - input value
77-
* @param mapFc - function to invoke for each iterated value
77+
* @param mapFcn - function to invoke for each iterated value
7878
* @param thisArg - execution context
7979
* @returns iterator
8080
*

0 commit comments

Comments
 (0)