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 Nov 9, 2023
1 parent d50935a commit 2a3fa34
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 9 deletions.
1 change: 1 addition & 0 deletions code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3692,6 +3692,7 @@ nditerColumns,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerColumns(
nditerEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerEntries( x );\nvar v = it.next().value\nv = it.next().value\n"
nditerIndices,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerIndices( x.shape );\nvar v = it.next().value\nv = it.next().value\n"
nditerMatrices,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerMatrices( x );\nvar v = it.next().value;\nndarray2array( v )\n"
nditerMatrixEntries,"var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );\nvar it = nditerMatrixEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
nditerRowEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerRowEntries( x );\nvar v = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\nv = it.next().value;\nv[ 0 ]\nndarray2array( v[ 1 ] )\n"
nditerRows,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerRows( x );\nvar v = it.next().value;\nndarray2array( v )\nv = 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"
Expand Down
2 changes: 1 addition & 1 deletion code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.js.map

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion 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.

1 change: 1 addition & 0 deletions info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3692,6 +3692,7 @@ nditerColumns,"\nnditerColumns( x:ndarray[, options:Object] )\n Returns an it
nditerEntries,"\nnditerEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, value] pairs for each element in a\n provided ndarray.\n"
nditerIndices,"\nnditerIndices( shape:Array<integer>[, options:Object] )\n Returns an iterator which returns indices for use indexing into an ndarray\n having a specified shape.\n"
nditerMatrices,"\nnditerMatrices( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each matrix in a stack of matrices.\n"
nditerMatrixEntries,"\nnditerMatrixEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, matrix] pairs for each matrix in a\n stack of matrices.\n"
nditerRowEntries,"\nnditerRowEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, row] pairs for each row in a\n matrix (or stack of matrices).\n"
nditerRows,"\nnditerRows( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each row in a matrix (or stack of\n matrices).\n"
nditerValues,"\nnditerValues( x:ndarray[, options:Object] )\n Returns an iterator which returns individual elements from a provided\n ndarray.\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 @@ -3729,6 +3729,7 @@ nditerColumns,"nditerColumns( x[, options] )"
nditerEntries,"nditerEntries( x[, options] )"
nditerIndices,"nditerIndices( shape[, options] )"
nditerMatrices,"nditerMatrices( x[, options] )"
nditerMatrixEntries,"nditerMatrixEntries( x[, options] )"
nditerRowEntries,"nditerRowEntries( x[, options] )"
nditerRows,"nditerRows( x[, options] )"
nditerValues,"nditerValues( x[, options] )"
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 @@ -3729,6 +3729,7 @@ nditerColumns,"nditerColumns( x:ndarray[, options:Object] )"
nditerEntries,"nditerEntries( x:ndarray[, options:Object] )"
nditerIndices,"nditerIndices( shape:Array<integer>[, options:Object] )"
nditerMatrices,"nditerMatrices( x:ndarray[, options:Object] )"
nditerMatrixEntries,"nditerMatrixEntries( x:ndarray[, options:Object] )"
nditerRowEntries,"nditerRowEntries( x:ndarray[, options:Object] )"
nditerRows,"nditerRows( x:ndarray[, options:Object] )"
nditerValues,"nditerValues( x:ndarray[, 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 2a3fa34

Please sign in to comment.