Skip to content

Commit 96c246f

Browse files
committed
Auto-generated commit
1 parent 00984f9 commit 96c246f

File tree

36 files changed

+1025
-98
lines changed

36 files changed

+1025
-98
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-11-21)
7+
## Unreleased (2025-11-26)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`f1fbeb4`](https://github.com/stdlib-js/stdlib/commit/f1fbeb47d9a2a6672bc9690b0b006534168e904a) - add `ndarray/fliplr` [(#8589)](https://github.com/stdlib-js/stdlib/pull/8589)
1314
- [`a2fd4d6`](https://github.com/stdlib-js/stdlib/commit/a2fd4d6929c7af4f33ebe97d53fec4b7a9bcbf33) - add `ndarray/some` [(#8514)](https://github.com/stdlib-js/stdlib/pull/8514)
1415
- [`4b6f051`](https://github.com/stdlib-js/stdlib/commit/4b6f0510d4773574101122924f20cb4d987c2b38) - add `complementShape` to namespace
1516
- [`903f141`](https://github.com/stdlib-js/stdlib/commit/903f1415351afbabd33b859b0888ad2daa02ecc0) - add `ndarray/base/complement-shape`
@@ -641,6 +642,11 @@ A total of 34 issues were closed in this release:
641642

642643
<details>
643644

645+
- [`f1fbeb4`](https://github.com/stdlib-js/stdlib/commit/f1fbeb47d9a2a6672bc9690b0b006534168e904a) - **feat:** add `ndarray/fliplr` [(#8589)](https://github.com/stdlib-js/stdlib/pull/8589) _(by Muhammad Haris)_
646+
- [`c520b5a`](https://github.com/stdlib-js/stdlib/commit/c520b5a0cae0c85e946f8a646e7cc8c01b3b5673) - **docs:** address TSDoc lint errors and add doctest aliases _(by Philipp Burckhardt)_
647+
- [`3f7b1ed`](https://github.com/stdlib-js/stdlib/commit/3f7b1ed405cdb77a3357d424f462e8d3b2276df5) - **docs:** fix code in TSDoc examples _(by Philipp Burckhardt)_
648+
- [`7f55434`](https://github.com/stdlib-js/stdlib/commit/7f554349e50fc601e7ab4206ba1da0eceae93518) - **docs:** fix TSDoc comments example code and return annotation values _(by Philipp Burckhardt)_
649+
- [`47088cc`](https://github.com/stdlib-js/stdlib/commit/47088cc299d84289a904dd2e7d2cdf0aee9057aa) - **docs:** fix TSDoc comments example code and return annotation values _(by Philipp Burckhardt)_
644650
- [`f870646`](https://github.com/stdlib-js/stdlib/commit/f870646312fdbc9c2fb63bcfa7094cf889ed75f1) - **test:** add tests to `ndarray/base/count-truthy` [(#8301)](https://github.com/stdlib-js/stdlib/pull/8301) _(by Muhammad Haris, Athan Reines)_
645651
- [`555d6f3`](https://github.com/stdlib-js/stdlib/commit/555d6f3a7931b2c898fc8a6474ba81879f56d4d3) - **test:** add tests to `ndarray/base/count-falsy` [(#8305)](https://github.com/stdlib-js/stdlib/pull/8305) _(by Muhammad Haris, Athan Reines)_
646652
- [`ce0bfa5`](https://github.com/stdlib-js/stdlib/commit/ce0bfa50e43dc1f8ee15679b6194c1349730de59) - **test:** fix underlying buffer type _(by Athan Reines)_

base/from-scalar-like/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ declare function scalar2ndarrayLike<T = unknown>( x: genericndarray<T>, value: T
424424
* // returns []
425425
*
426426
* var dt = y.dtype;
427-
* // returns 'generic'
427+
* // returns 'float64'
428428
*
429429
* var v = y.get();
430430
* // returns 1.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import { ndarray } from '@stdlib/types/ndarray';
5555
* });
5656
*
5757
* // Perform reduction:
58-
* var out = includes( [ x, searchElement ] );
58+
* var out = includes( [ x, v ] );
5959
* // returns true
6060
*/
6161
declare function includes( arrays: ArrayLike<ndarray> ): boolean;

base/loop-interchange-order/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ import { ArrayLike } from '@stdlib/types/array';
5757
* var sy = [ 24, 8, 1 ]; // row-major
5858
* var sz = [ 1, -2, 6 ]; // column-major
5959
*
60-
* var o = loopOrder( shape, [ sx, sy, sz ] );
61-
* // returns {...}
60+
* var o = loopOrder( sh, [ sx, sy, sz ] );
61+
* // returns [...]
6262
*
6363
* var ssh = o[ 0 ];
6464
* // returns [ 4, 3, 2 ]

base/maybe-broadcast-arrays/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ import { ndarray } from '@stdlib/types/ndarray';
5353
* var shy = y1.shape;
5454
* // returns [ 3, 2, 2 ]
5555
*
56-
* var out = maybeBroadcastArrays( [ x, y ] );
57-
* // returns <ndarray>
56+
* var out = maybeBroadcastArrays( [ x, y1 ] );
57+
* // returns [ <ndarray>, <ndarray> ]
5858
*
5959
* var x2 = out[ 0 ];
6060
* // returns <ndarray>

base/unary-reduce-strided1d-dispatch-by-factory/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ interface UnaryFunction<T, U> {
234234
* // returns <ndarray>
235235
*
236236
* var v = y.get();
237-
* // returns 2.0
237+
* // returns 4.0
238238
*/
239239
<ThisArg = unknown>( x: InputArray<T>, ...args: Array<InputArray<T> | Options | Callback<T, U, ThisArg> | ThisParameterType<Callback<T, U, ThisArg>>> ): OutputArray<U>; // NOTE: we lose type specificity here, but retaining specificity would likely be difficult and/or tedious to completely enumerate, as the output ndarray data type is dependent on how `x` interacts with output data type policy and whether that policy has been overridden by `options.dtype`. In principle, as well, based on the policy, it is possible to know more exactly which `InputArray` types are actually allowed.
240240

@@ -278,7 +278,7 @@ interface UnaryFunction<T, U> {
278278
* // returns <ndarray>
279279
*
280280
* var v = out.get();
281-
* // returns 2.0
281+
* // returns 4.0
282282
*
283283
* var bool = ( out === y );
284284
* // returns true
@@ -326,7 +326,7 @@ interface UnaryFunction<T, U> {
326326
* // returns <ndarray>
327327
*
328328
* var v = out.get();
329-
* // returns 2.0
329+
* // returns 4.0
330330
*
331331
* var bool = ( out === y );
332332
* // returns true
@@ -374,7 +374,7 @@ interface UnaryFunction<T, U> {
374374
* // returns <ndarray>
375375
*
376376
* var v = out.get();
377-
* // returns 2.0
377+
* // returns 4.0
378378
*
379379
* var bool = ( out === y );
380380
* // returns true
@@ -419,7 +419,7 @@ interface UnaryFunction<T, U> {
419419
* // returns <ndarray>
420420
*
421421
* var v = y.get();
422-
* // returns 2.0
422+
* // returns 4.0
423423
*/
424424
declare function factory<T = unknown, U = unknown>( table: DispatchTable<T, U> | BaseDispatchTable<T, U>, idtypes: ArrayLike<ArrayLike<DataType>>, odtypes: ArrayLike<DataType>, policies: Policies ): UnaryFunction<T, U>;
425425

base/unary-reduce-strided1d-dispatch-by/docs/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,7 @@ interface UnaryStrided1dDispatchByConstructor {
551551
*/
552552
declare var ctor: UnaryStrided1dDispatchByConstructor;
553553

554+
// eslint-doctest-alias: UnaryStrided1dDispatchBy
554555

555556
// EXPORTS //
556557

base/unary-reduce-strided1d-dispatch/docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,8 @@ interface UnaryStrided1dDispatchConstructor {
393393
*/
394394
declare var ctor: UnaryStrided1dDispatchConstructor;
395395

396+
// eslint-doctest-alias: UnaryStrided1dDispatch
397+
396398

397399
// EXPORTS //
398400

base/unary-strided1d-dispatch-factory/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ interface UnaryFunction<T, U> {
148148
* var table = {
149149
* 'default': base
150150
* };
151-
* var cumax = factory( table, [ idt ], odt, policy );
151+
* var cumax = factory( table, [ idt ], odt, policies );
152152
*
153153
* var xbuf = [ -1.0, 2.0, -3.0 ];
154154
* var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
@@ -185,7 +185,7 @@ interface UnaryFunction<T, U> {
185185
* var table = {
186186
* 'default': base
187187
* };
188-
* var cumax = factory( table, [ idt ], odt, policy );
188+
* var cumax = factory( table, [ idt ], odt, policies );
189189
*
190190
* var xbuf = [ -1.0, 2.0, -3.0 ];
191191
* var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
@@ -228,7 +228,7 @@ interface UnaryFunction<T, U> {
228228
* var table = {
229229
* 'default': base
230230
* };
231-
* var cumax = factory( table, [ idt ], odt, policy );
231+
* var cumax = factory( table, [ idt ], odt, policies );
232232
*
233233
* var xbuf = [ -1.0, 2.0, -3.0 ];
234234
* var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
@@ -274,7 +274,7 @@ interface UnaryFunction<T, U> {
274274
* var table = {
275275
* 'default': base
276276
* };
277-
* var cumax = factory( table, [ idt ], odt, policy );
277+
* var cumax = factory( table, [ idt ], odt, policies );
278278
*
279279
* var xbuf = [ -1.0, 2.0, -3.0 ];
280280
* var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );

base/unary-strided1d-dispatch/docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,8 @@ interface UnaryStrided1dDispatchConstructor {
409409
*/
410410
declare var ctor: UnaryStrided1dDispatchConstructor;
411411

412+
// eslint-doctest-alias: UnaryStrided1dDispatch
413+
412414

413415
// EXPORTS //
414416

0 commit comments

Comments
 (0)