Skip to content

Commit ac3c9a0

Browse files
committed
Auto-generated commit
1 parent 864e955 commit ac3c9a0

File tree

21 files changed

+24
-40
lines changed

21 files changed

+24
-40
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,8 @@ A total of 24 issues were closed in this release:
511511

512512
<details>
513513

514+
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
515+
- [`da9d08b`](https://github.com/stdlib-js/stdlib/commit/da9d08b99b9662e7421722b5c2af30f6bfb1bbf5) - **docs:** add missing require to TSDoc example code _(by Philipp Burckhardt)_
514516
- [`cfe870b`](https://github.com/stdlib-js/stdlib/commit/cfe870b5ab3798377068aba5e239bf50f730f116) - **feat:** add `ndarray/base/nullary-strided1d-dispatch` [(#7821)](https://github.com/stdlib-js/stdlib/pull/7821) _(by Muhammad Haris, Athan Reines, stdlib-bot)_
515517
- [`e11eb77`](https://github.com/stdlib-js/stdlib/commit/e11eb777e6ca3c2f0b9bdccdffeee5cf25dac9f1) - **docs:** add empty intro section _(by Athan Reines)_
516518
- [`565ae6c`](https://github.com/stdlib-js/stdlib/commit/565ae6c872ce74c4853618182fc33c8a30371d42) - **docs:** update description _(by Athan Reines)_

base/any-by/docs/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ type Predicate<T, U, ThisArg> = Nullary<ThisArg> | Unary<T, ThisArg> | Binary<T,
7777
*
7878
* @example
7979
* var Float64Array = require( '@stdlib/array/float64' );
80+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
8081
*
8182
* function predicate( value ) {
8283
* return value > 0.0;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3131
*
3232
* @example
3333
* var Float64Array = require( '@stdlib/array/float64' );
34+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
3435
*
3536
* // Create a data buffer:
3637
* var xbuf = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );

base/count-if/docs/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ type Predicate<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
7777
*
7878
* @example
7979
* var Float64Array = require( '@stdlib/array/float64' );
80+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
8081
*
8182
* function predicate( value ) {
8283
* return value > 0.0;

base/every-by/docs/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ type Predicate<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
7777
*
7878
* @example
7979
* var Float64Array = require( '@stdlib/array/float64' );
80+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
8081
*
8182
* function predicate( value ) {
8283
* return value > 0.0;

base/for-each/docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ type Callback<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
6666
*
6767
* @param arrays - array-like object containing an output ndarray
6868
* @param fcn - callback function
69+
* @param thisArg - callback function execution context
6970
*
7071
* @example
7172
* var Float64Array = require( '@stdlib/array/float64' );
7273
* var naryFunction = require( '@stdlib/utils/nary-function' );
74+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
7375
* var log = require( '@stdlib/console/log' );
7476
*
7577
* // Create data buffers:

base/some-by/docs/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ type Predicate<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
7777
* @example
7878
* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
7979
* var Float64Array = require( '@stdlib/array/float64' );
80+
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
8081
*
8182
* function predicate( value ) {
8283
* return value > 0.0;

iter/column-entries/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ interface Options {
5656
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
5757
* var array = require( '@stdlib/ndarray/array' );
5858
*
59-
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
60-
* 'dtype': 'float64'
61-
* });
59+
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
6260
* // returns <ndarray>
6361
*
6462
* var iter = nditerColumnEntries( x );

iter/columns/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ interface Options {
5252
* var array = require( '@stdlib/ndarray/array' );
5353
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
5454
*
55-
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
56-
* 'dtype': 'float64'
57-
* });
55+
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
5856
* // returns <ndarray>
5957
*
6058
* var iter = nditerColumns( x );

iter/entries/docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ interface Options {
5555
* @example
5656
* var array = require( '@stdlib/ndarray/array' );
5757
*
58-
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
59-
* 'dtype': 'float64'
60-
* });
58+
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
6159
* // returns <ndarray>
6260
*
6361
* var iter = nditerEntries( x );

0 commit comments

Comments
 (0)