Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 14, 2024
1 parent 7c4e066 commit 9d73377
Show file tree
Hide file tree
Showing 11 changed files with 106 additions and 7 deletions.
90 changes: 90 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,28 @@

<!-- /.package -->

<section class="package" id="repl-code-blocks-unreleased">

#### [@stdlib/repl/code-blocks](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/repl/code-blocks)

<details>

<section class="features">

##### Features

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - add `ndreject` to namespace

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

<section class="package" id="repl-help-unreleased">

#### [@stdlib/repl/help](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/repl/help)
Expand All @@ -42,6 +64,7 @@

##### Features

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - add `ndreject` to namespace
- [`b916456`](https://github.com/stdlib-js/stdlib/commit/b916456714e3c8a4ecaf6605adf4d36188e924f9) - add `ndmap` and `ndfilter` to namespace

</section>
Expand All @@ -54,6 +77,72 @@

<!-- /.package -->

<section class="package" id="repl-info-unreleased">

#### [@stdlib/repl/info](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/repl/info)

<details>

<section class="features">

##### Features

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - add `ndreject` to namespace

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

<section class="package" id="repl-signature-unreleased">

#### [@stdlib/repl/signature](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/repl/signature)

<details>

<section class="features">

##### Features

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - add `ndreject` to namespace

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

<section class="package" id="repl-typed-signature-unreleased">

#### [@stdlib/repl/typed-signature](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/repl/typed-signature)

<details>

<section class="features">

##### Features

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - add `ndreject` to namespace

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

</section>

<!-- /.packages -->
Expand All @@ -78,6 +167,7 @@ A total of 3 people contributed to this release. Thank you to the following cont

<details>

- [`9ecc3d3`](https://github.com/stdlib-js/stdlib/commit/9ecc3d30b87a0d38cc7608a35024a15c920a2f29) - **feat:** add `ndreject` to namespace _(by Athan Reines)_
- [`b916456`](https://github.com/stdlib-js/stdlib/commit/b916456714e3c8a4ecaf6605adf4d36188e924f9) - **feat:** add `ndmap` and `ndfilter` to namespace _(by Athan Reines)_
- [`05e89d4`](https://github.com/stdlib-js/stdlib/commit/05e89d4f958c0363eddb9e18e1610289e8d64377) - **docs:** update REPL namespace documentation [(#3901)](https://github.com/stdlib-js/stdlib/pull/3901) _(by stdlib-bot, Philipp Burckhardt)_
- [`3ca45d4`](https://github.com/stdlib-js/stdlib/commit/3ca45d4730ad8d978e424697e9bffc5bc5ba6680) - **docs:** update REPL namespace documentation [(#3381)](https://github.com/stdlib-js/stdlib/pull/3381) _(by stdlib-bot, Philipp Burckhardt)_
Expand Down
2 changes: 2 additions & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4123,6 +4123,7 @@ ndarrayStrides,"var out = ndarrayStrides( ndzeros( [ 3, 3, 3 ] ) )\n"
ndat,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nndat( x, 0, 1 )\nndat( x, 1, 0 )\n"
ndempty,"var arr = ndempty( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
ndemptyLike,"var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\nvar sh = x.shape\nvar dt = x.dtype\nvar y = ndemptyLike( x )\nsh = y.shape\ndt = y.dtype\n"
ndfilter,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { return v > 2.0; };\nvar y = ndfilter( x, f );\nndarray2array( y )\n"
ndims,"var n = ndims( ndzeros( [ 3, 3, 3 ] ) )\n"
nditerColumnEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumnEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\nv = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
nditerColumns,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumns( x );\nvar v = it.next().value;\nndarray2array( v )\nv = it.next().value;\nndarray2array( v )\n"
Expand All @@ -4137,6 +4138,7 @@ nditerSelectDimension,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nd
nditerStacks,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerStacks( x, [ 1, 2 ] );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerSubarrays,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerSubarrays( x, 2 );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerValues,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerValues( x );\nvar v = it.next().value\nv = it.next().value\n"
ndmap,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { return v*10.0; };\nvar y = ndmap( x, f );\nndarray2array( y )\n"
ndslice,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\nx.shape\nvar s = new MultiSlice( null, 1 )\nvar y = ndslice( x, s )\ny.shape\nndarray2array( y )\n"
ndsliceAssign,"var y = ndzeros( [ 2, 2 ] )\nvar x = scalar2ndarray( 3.0 )\nvar s = new MultiSlice( null, 1 )\nvar out = ndsliceAssign( x, y, s )\nvar bool = ( out === y )\nndarray2array( y )\n"
ndsliceDimension,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\nx.shape\nvar y = ndsliceDimension( x, 1, 1 )\ny.shape\nndarray2array( y )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion help/data/data.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4124,6 +4124,7 @@ ndarrayStrides,"\nndarrayStrides( x:ndarray )\n Returns the strides of a prov
ndat,"\nndat( x:ndarray[, ...indices:integer] )\n Returns an ndarray element.\n"
ndempty,"\nndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an uninitialized ndarray having a specified shape and data type.\n"
ndemptyLike,"\nndemptyLike( x:ndarray[, options:Object] )\n Returns an uninitialized ndarray having the same shape and data type as a\n provided input ndarray.\n"
ndfilter,"\nndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )\n Returns a shallow copy of an ndarray containing only those elements which\n pass a test implemented by a predicate function.\n"
ndims,"\nndims( x:ndarray )\n Returns the number of ndarray dimensions.\n"
nditerColumnEntries,"\nnditerColumnEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, column] pairs for each column in a\n matrix (or stack of matrices).\n"
nditerColumns,"\nnditerColumns( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each column in a matrix (or stack of\n matrices).\n"
Expand All @@ -4138,6 +4139,7 @@ nditerSelectDimension,"\nnditerSelectDimension( x:ndarray, dim:integer[, options
nditerStacks,"\nnditerStacks( x:ndarray, dims:Array<integer>[, options:Object] )\n Returns an iterator which iterates over each subarray in a stack of\n subarrays according to a list of specified stack dimensions.\n"
nditerSubarrays,"\nnditerSubarrays( x:ndarray, ndims:integer[, options:Object] )\n Returns an iterator which iterates over each subarray in a stack of\n subarrays.\n"
nditerValues,"\nnditerValues( x:ndarray[, options:Object] )\n Returns an iterator which returns individual elements from a provided\n ndarray.\n"
ndmap,"\nndmap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )\n Applies a callback function to elements in an input ndarray and assigns\n results to elements in a new output ndarray.\n"
ndslice,"\nndslice( x:ndarray, ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, \n options:Object] )\n Returns a read-only view of an input ndarray.\n"
ndsliceAssign,"\nndsliceAssign( x:ndarray, y:ndarray, \n ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, options:Object] )\n Assigns element values from a broadcasted input ndarray to corresponding\n elements in an output ndarray view.\n"
ndsliceDimension,"\nndsliceDimension( x:ndarray, dim:integer, slice:Slice|integer|null|undefined[, \n options:Object] )\n Returns a read-only view of an input ndarray when sliced along a specified\n dimension.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4176,6 +4176,7 @@ ndarrayStrides,"ndarrayStrides( x )"
ndat,"ndat( x[, ...indices] )"
ndempty,"ndempty( shape[, options] )"
ndemptyLike,"ndemptyLike( x[, options] )"
ndfilter,"ndfilter( x[, options], predicate[, thisArg] )"
ndims,"ndims( x )"
nditerColumnEntries,"nditerColumnEntries( x[, options] )"
nditerColumns,"nditerColumns( x[, options] )"
Expand All @@ -4190,6 +4191,7 @@ nditerSelectDimension,"nditerSelectDimension( x, dim[, options] )"
nditerStacks,"nditerStacks( x, dims[, options] )"
nditerSubarrays,"nditerSubarrays( x, ndims[, options] )"
nditerValues,"nditerValues( x[, options] )"
ndmap,"ndmap( x[, options], fcn[, thisArg] )"
ndslice,"ndslice( x, ...s[, options] )"
ndsliceAssign,"ndsliceAssign( x, y, ...s[, options] )"
ndsliceDimension,"ndsliceDimension( x, dim, slice[, options] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4176,6 +4176,7 @@ ndarrayStrides,"ndarrayStrides( x:ndarray )"
ndat,"ndat( x:ndarray[, ...indices:integer] )"
ndempty,"ndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
ndemptyLike,"ndemptyLike( x:ndarray[, options:Object] )"
ndfilter,"ndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )"
ndims,"ndims( x:ndarray )"
nditerColumnEntries,"nditerColumnEntries( x:ndarray[, options:Object] )"
nditerColumns,"nditerColumns( x:ndarray[, options:Object] )"
Expand All @@ -4190,6 +4191,7 @@ nditerSelectDimension,"nditerSelectDimension( x:ndarray, dim:integer[, options:O
nditerStacks,"nditerStacks( x:ndarray, dims:Array<integer>[, options:Object] )"
nditerSubarrays,"nditerSubarrays( x:ndarray, ndims:integer[, options:Object] )"
nditerValues,"nditerValues( x:ndarray[, options:Object] )"
ndmap,"ndmap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )"
ndslice,"ndslice( x:ndarray, ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, options:Object] )"
ndsliceAssign,"ndsliceAssign( x:ndarray, y:ndarray, ...s:MultiSlice|Slice|null|undefined|integer|ArrayLike[, options:Object] )"
ndsliceDimension,"ndsliceDimension( x:ndarray, dim:integer, slice:Slice|integer|null|undefined[, options:Object] )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit 9d73377

Please sign in to comment.