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 Aug 17, 2024
1 parent c6b9638 commit 2c9d577
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ A total of 7 people contributed to this release. Thank you to the following cont

<details>

- [`5f8d50d`](https://github.com/stdlib-js/stdlib/commit/5f8d50df14363d06b37b9d551143fc46d90c79bd) - **docs:** update REPL docs _(by Athan Reines)_
- [`febd8ae`](https://github.com/stdlib-js/stdlib/commit/febd8aef423c3723ef0cd4a04099faa609a38f51) - **feat:** add `ndarraylike2ndarray` to namespace _(by Athan Reines)_
- [`09ffebd`](https://github.com/stdlib-js/stdlib/commit/09ffebdfb9946b7e1dd3c05f58637fa073f0a121) - **feat:** add `nditerInterleaveSubarrays` to namespace _(by Athan Reines)_
- [`2939f56`](https://github.com/stdlib-js/stdlib/commit/2939f5662f4bc178fbe532579380d501ff7b1722) - **feat:** add `nditerStacks` to namespace _(by Athan Reines)_
Expand Down
1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4101,6 +4101,7 @@ ndarrayDispatch,"var t = [ 'float64', 'float64', 'float32', 'float32' ];\nvar d
ndarrayFlag,"var out = ndarrayFlag( ndzeros( [ 3, 3, 3 ] ), 'READONLY' )\n"
ndarrayFlags,"var out = ndarrayFlags( ndzeros( [ 3, 3, 3 ] ) )\n"
ndarrayIndexModes,"var out = ndarrayIndexModes()\n"
ndarraylike2ndarray,"var arr = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar out = ndarraylike2ndarray( arr )\n"
ndarrayMinDataType,"var dt = ndarrayMinDataType( 3.141592653589793 )\ndt = ndarrayMinDataType( 3 )\ndt = ndarrayMinDataType( -3 )\ndt = ndarrayMinDataType( '-3' )\n"
ndarrayMostlySafeCasts,"var out = ndarrayMostlySafeCasts( 'float32' )\n"
ndarrayNextDataType,"var out = ndarrayNextDataType( 'float32' )\n"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4102,6 +4102,7 @@ ndarrayDispatch,"\nndarrayDispatch( fcns:Function|ArrayLikeObject<Function>, \n
ndarrayFlag,"\nndarrayFlag( x:ndarray, name:string|symbol )\n Returns a specified flag for a provided ndarray.\n"
ndarrayFlags,"\nndarrayFlags( x:ndarray )\n Returns the flags of a provided ndarray.\n"
ndarrayIndexModes,"\nndarrayIndexModes()\n Returns a list of ndarray index modes.\n"
ndarraylike2ndarray,"\nndarraylike2ndarray( x:ndarrayLike[, options:Object] )\n Converts an ndarray-like object to an ndarray.\n"
ndarrayMinDataType,"\nndarrayMinDataType( value:any )\n Returns the minimum ndarray data type of the closest \"kind\" necessary for\n storing a provided scalar value.\n"
ndarrayMostlySafeCasts,"\nndarrayMostlySafeCasts( [dtype:any] )\n Returns a list of ndarray data types to which a provided ndarray data type\n can be safely cast and, for floating-point data types, can be downcast.\n"
ndarrayNextDataType,"\nndarrayNextDataType( [dtype:any] )\n Returns the next larger ndarray data type of the same kind.\n"
Expand Down
2 changes: 1 addition & 1 deletion info/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4154,6 +4154,7 @@ ndarrayDispatch,"ndarrayDispatch( fcns, types, data, nargs, nin, nout )"
ndarrayFlag,"ndarrayFlag( x, name )"
ndarrayFlags,"ndarrayFlags( x )"
ndarrayIndexModes,"ndarrayIndexModes()"
ndarraylike2ndarray,"ndarraylike2ndarray( x[, options] )"
ndarrayMinDataType,"ndarrayMinDataType( value )"
ndarrayMostlySafeCasts,"ndarrayMostlySafeCasts( [dtype] )"
ndarrayNextDataType,"ndarrayNextDataType( [dtype] )"
Expand Down
2 changes: 1 addition & 1 deletion signature/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4154,6 +4154,7 @@ ndarrayDispatch,"ndarrayDispatch( fcns:Function|ArrayLikeObject<Function>, types
ndarrayFlag,"ndarrayFlag( x:ndarray, name:string|symbol )"
ndarrayFlags,"ndarrayFlags( x:ndarray )"
ndarrayIndexModes,"ndarrayIndexModes()"
ndarraylike2ndarray,"ndarraylike2ndarray( x:ndarrayLike[, options:Object] )"
ndarrayMinDataType,"ndarrayMinDataType( value:any )"
ndarrayMostlySafeCasts,"ndarrayMostlySafeCasts( [dtype:any] )"
ndarrayNextDataType,"ndarrayNextDataType( [dtype:any] )"
Expand Down
2 changes: 1 addition & 1 deletion typed-signature/data/data.json

Large diffs are not rendered by default.

0 comments on commit 2c9d577

Please sign in to comment.