Skip to content

Commit 3a44e7e

Browse files
committed
feat: add ndshape to namespace
1 parent 482bd69 commit 3a44e7e

File tree

27 files changed

+41
-15
lines changed

27 files changed

+41
-15
lines changed

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@ nditerEntries,"@stdlib/ndarray/iter/entries"
22942294
nditerIndices,"@stdlib/ndarray/iter/indices"
22952295
nditerRows,"@stdlib/ndarray/iter/rows"
22962296
nditerValues,"@stdlib/ndarray/iter/values"
2297+
ndshape,"@stdlib/ndarray/shape"
22972298
ndslice,"@stdlib/ndarray/slice"
22982299
ndsliceAssign,"@stdlib/ndarray/slice-assign"
22992300
ndzeros,"@stdlib/ndarray/zeros"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

+2-1
Original file line numberDiff line numberDiff line change
@@ -2287,13 +2287,14 @@ ndarraySafeCasts,"ndarrayCastingModes,ndarrayDataTypes,ndarraySameKindCasts"
22872287
ndarraySameKindCasts,"ndarrayCastingModes,ndarrayDataTypes,ndarraySafeCasts"
22882288
ndempty,"ndemptyLike,ndzeros"
22892289
ndemptyLike,"ndempty,ndzerosLike"
2290-
ndims,"array,ndarray,numel"
2290+
ndims,"array,ndarray,numel,ndshape"
22912291
nditer2arrayEach,"ndarray,ndarray2array"
22922292
nditerColumns,"nditerRows,ndslice"
22932293
nditerEntries,"ndarray,nditerIndices,nditerValues"
22942294
nditerIndices,"ndarray,nditerEntries,nditerValues"
22952295
nditerRows,"nditerColumns,ndslice"
22962296
nditerValues,"ndarray,nditerEntries,nditerIndices"
2297+
ndshape,"array,ndarray"
22972298
ndslice,"array,ndarray,ndsliceAssign"
22982299
ndsliceAssign,"array,ndarray,ndslice"
22992300
ndzeros,"ndempty,ndzerosLike"

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@ nditerEntries,"@stdlib/ndarray-iter-entries"
22942294
nditerIndices,"@stdlib/ndarray-iter-indices"
22952295
nditerRows,"@stdlib/ndarray-iter-rows"
22962296
nditerValues,"@stdlib/ndarray-iter-values"
2297+
ndshape,"@stdlib/ndarray-shape"
22972298
ndslice,"@stdlib/ndarray-slice"
22982299
ndsliceAssign,"@stdlib/ndarray-slice-assign"
22992300
ndzeros,"@stdlib/ndarray-zeros"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@ nditerEntries
22942294
nditerIndices
22952295
nditerRows
22962296
nditerValues
2297+
ndshape
22972298
ndslice
22982299
ndsliceAssign
22992300
ndzeros

lib/node_modules/@stdlib/namespace/lib/namespace/n.js

+13
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,19 @@ ns.push({
308308
]
309309
});
310310

311+
ns.push({
312+
'alias': 'ndshape',
313+
'path': '@stdlib/ndarray/shape',
314+
'value': require( '@stdlib/ndarray/shape' ),
315+
'type': 'Function',
316+
'related': [
317+
'@stdlib/ndarray/array',
318+
'@stdlib/ndarray/ctor',
319+
'@stdlib/ndarray/offset',
320+
'@stdlib/ndarray/strides'
321+
]
322+
});
323+
311324
ns.push({
312325
'alias': 'ndslice',
313326
'path': '@stdlib/ndarray/slice',

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@
22942294
"@stdlib/ndarray/iter/indices",nditerIndices
22952295
"@stdlib/ndarray/iter/rows",nditerRows
22962296
"@stdlib/ndarray/iter/values",nditerValues
2297+
"@stdlib/ndarray/shape",ndshape
22972298
"@stdlib/ndarray/slice",ndslice
22982299
"@stdlib/ndarray/slice-assign",ndsliceAssign
22992300
"@stdlib/ndarray/zeros",ndzeros

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv

+2-1
Original file line numberDiff line numberDiff line change
@@ -2287,13 +2287,14 @@
22872287
"@stdlib/ndarray/same-kind-casts","@stdlib/ndarray/casting-modes,@stdlib/ndarray/dtypes,@stdlib/ndarray/safe-casts"
22882288
"@stdlib/ndarray/empty","@stdlib/ndarray/empty-like,@stdlib/ndarray/zeros"
22892289
"@stdlib/ndarray/empty-like","@stdlib/ndarray/empty,@stdlib/ndarray/zeros-like"
2290-
"@stdlib/ndarray/ndims","@stdlib/ndarray/array,@stdlib/ndarray/ctor,@stdlib/ndarray/numel"
2290+
"@stdlib/ndarray/ndims","@stdlib/ndarray/array,@stdlib/ndarray/ctor,@stdlib/ndarray/numel,@stdlib/ndarray/shape"
22912291
"@stdlib/ndarray/iter/to-array-each","@stdlib/ndarray/ctor,@stdlib/ndarray/to-array"
22922292
"@stdlib/ndarray/iter/columns","@stdlib/ndarray/iter/rows,@stdlib/ndarray/slice"
22932293
"@stdlib/ndarray/iter/entries","@stdlib/ndarray/ctor,@stdlib/ndarray/iter/indices,@stdlib/ndarray/iter/values"
22942294
"@stdlib/ndarray/iter/indices","@stdlib/ndarray/ctor,@stdlib/ndarray/iter/entries,@stdlib/ndarray/iter/values"
22952295
"@stdlib/ndarray/iter/rows","@stdlib/ndarray/iter/columns,@stdlib/ndarray/slice"
22962296
"@stdlib/ndarray/iter/values","@stdlib/ndarray/ctor,@stdlib/ndarray/iter/entries,@stdlib/ndarray/iter/indices"
2297+
"@stdlib/ndarray/shape","@stdlib/ndarray/array,@stdlib/ndarray/ctor"
22972298
"@stdlib/ndarray/slice","@stdlib/ndarray/array,@stdlib/ndarray/ctor,@stdlib/ndarray/slice-assign"
22982299
"@stdlib/ndarray/slice-assign","@stdlib/ndarray/array,@stdlib/ndarray/ctor,@stdlib/ndarray/slice"
22992300
"@stdlib/ndarray/zeros","@stdlib/ndarray/empty,@stdlib/ndarray/zeros-like"

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@
22942294
"@stdlib/ndarray/iter/indices","@stdlib/ndarray-iter-indices"
22952295
"@stdlib/ndarray/iter/rows","@stdlib/ndarray-iter-rows"
22962296
"@stdlib/ndarray/iter/values","@stdlib/ndarray-iter-values"
2297+
"@stdlib/ndarray/shape","@stdlib/ndarray-shape"
22972298
"@stdlib/ndarray/slice","@stdlib/ndarray-slice"
22982299
"@stdlib/ndarray/slice-assign","@stdlib/ndarray-slice-assign"
22992300
"@stdlib/ndarray/zeros","@stdlib/ndarray-zeros"

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2294,6 +2294,7 @@
22942294
"@stdlib/ndarray-iter-indices","@stdlib/ndarray/iter/indices"
22952295
"@stdlib/ndarray-iter-rows","@stdlib/ndarray/iter/rows"
22962296
"@stdlib/ndarray-iter-values","@stdlib/ndarray/iter/values"
2297+
"@stdlib/ndarray-shape","@stdlib/ndarray/shape"
22972298
"@stdlib/ndarray-slice","@stdlib/ndarray/slice"
22982299
"@stdlib/ndarray-slice-assign","@stdlib/ndarray/slice-assign"
22992300
"@stdlib/ndarray-zeros","@stdlib/ndarray/zeros"

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -3679,6 +3679,7 @@ ndarraySafeCasts,"var out = ndarraySafeCasts( 'float32' )\n"
36793679
ndarraySameKindCasts,"var out = ndarraySameKindCasts( 'float32' )\n"
36803680
ndempty,"var arr = ndempty( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
36813681
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"
3682+
ndims,"var n = ndims( ndzeros( [ 3, 3, 3 ] ) )\n"
36823683
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"
36833684
nditerEntries,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerEntries( x );\nvar v = it.next().value\nv = it.next().value\n"
36843685
nditerIndices,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerIndices( x.shape );\nvar v = it.next().value\nv = it.next().value\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/help/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -3685,6 +3685,7 @@ nditerEntries,"\nnditerEntries( x[, options] )\n Returns an iterator which re
36853685
nditerIndices,"\nnditerIndices( shape[, options] )\n Returns an iterator which returns indices for use indexing into an ndarray\n having a specified shape.\n\n If an environment supports Symbol.iterator, the returned iterator is\n iterable.\n\n Parameters\n ----------\n shape: Array<integer>\n Input shape.\n\n options: Object (optional)\n Options.\n\n options.order: string (optional)\n Index iteration order. By default, the returned iterator iterates over\n the last dimensions first, thus corresponding to iteration over\n contiguous data stored in row-major order. Must be either 'row-major'\n or 'column-major'.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\n > var it = nditerIndices( x.shape );\n > var v = it.next().value\n [ 0, 0 ]\n > v = it.next().value\n [ 0, 1 ]\n\n See Also\n --------\n ndarray, nditerEntries, nditerValues\n"
36863686
nditerRows,"\nnditerRows( x[, options] )\n Returns an iterator which iterates over each row in a matrix (or stack of\n matrices).\n\n If an environment supports Symbol.iterator, the returned iterator is\n iterable.\n\n If an environment supports Symbol.iterator, the function explicitly does not\n invoke an ndarray's `@@iterator` method, regardless of whether this method\n is defined.\n\n Parameters\n ----------\n x: ndarray\n Input ndarray for which to create the iterator.\n\n options: Object (optional)\n Options.\n\n options.readonly: boolean (optional)\n Boolean indicating whether returned ndarray views should be read-only.\n If the input ndarray is read-only, setting this option to `false` raises\n an exception. Default: true.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\n > var it = nditerRows( x );\n > var v = it.next().value;\n > ndarray2array( v )\n [ 1, 2 ]\n > v = it.next().value;\n > ndarray2array( v )\n [ 3, 4 ]\n\n See Also\n --------\n nditerColumns, ndslice\n"
36873687
nditerValues,"\nnditerValues( x[, options] )\n Returns an iterator which returns individual elements from a provided\n ndarray.\n\n If an environment supports Symbol.iterator, the returned iterator is\n iterable.\n\n If an environment supports Symbol.iterator, the function explicitly does not\n invoke an ndarray's `@@iterator` method, regardless of whether this method\n is defined.\n\n Parameters\n ----------\n x: ndarray\n Input array.\n\n options: Object (optional)\n Options.\n\n options.order: string (optional)\n Index iteration order. By default, the returned iterator returns values\n according to the layout order of the provided array. Accordingly, for\n row-major input arrays, the last dimension indices increment fastest.\n For column-major input arrays, the first dimension indices increment\n fastest. To override the inferred order and ensure that indices\n increment in a specific manor, regardless of the input array's layout\n order, explicitly set the iteration order. Note, however, that iterating\n according to an order which does not match that of the input array may,\n in some circumstances, result in performance degradation due to cache\n misses. Must be either 'row-major' or 'column-major'.\n\n Returns\n -------\n iterator: Object\n Iterator.\n\n iterator.next(): Function\n Returns an iterator protocol-compliant object containing the next\n iterated value (if one exists) and a boolean flag indicating whether the\n iterator is finished.\n\n iterator.return( [value] ): Function\n Finishes an iterator and returns a provided value.\n\n Examples\n --------\n > var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\n > var it = nditerValues( x );\n > var v = it.next().value\n 1\n > v = it.next().value\n 2\n\n See Also\n --------\n ndarray, nditerEntries, nditerIndices\n"
3688+
ndshape,"\nndshape( x )\n Returns the shape of a provided ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input ndarray.\n\n Returns\n -------\n out: Array<integer>\n Shape.\n\n Examples\n --------\n > var out = ndshape( ndzeros( [ 3, 3, 3 ] ) )\n [ 3, 3, 3 ]\n\n See Also\n --------\n array, ndarray\n"
36883689
ndslice,"\nndslice( x, ...s[, options] )\n Returns a read-only view of an input ndarray.\n\n The function supports three (mutually exclusive) means of providing slice\n arguments:\n\n 1. Providing a single MultiSlice object.\n 2. Providing a single array containing slice arguments.\n 3. Providing slice arguments as separate arguments.\n\n An individual slice argument must be either a Slice, an integer, null, or\n undefined.\n\n In all cases, the number of slice dimensions must match the number of array\n dimensions.\n\n If providing a MultiSlice object or an array of slice arguments, no other\n slice arguments should be provided.\n\n Mixing function invocation styles (e.g., providing multiple MultiSlice\n objects or providing an array of slice arguments followed by additional\n slice arguments) is not supported.\n\n Parameters\n ----------\n x: ndarray\n Input array.\n\n s: ...MultiSlice|Slice|null|undefined|integer|ArrayLike\n Slice arguments.\n\n options: Object (optional)\n Options.\n\n options.strict: boolean (optional)\n Boolean indicating whether to enforce strict bounds checking.\n Default: true.\n\n Returns\n -------\n out: ndarray\n Output array view.\n\n Examples\n --------\n > var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\n <ndarray>\n > x.shape\n [ 2, 2 ]\n > var s = new MultiSlice( null, 1 )\n <MultiSlice>\n > var y = ndslice( x, s )\n <ndarray>\n > y.shape\n [ 2 ]\n > ndarray2array( y )\n [ 2, 4 ]\n\n See Also\n --------\n array, ndarray, ndsliceAssign\n"
36893690
ndsliceAssign,"\nndsliceAssign( x, y, ...s[, options] )\n Assigns element values from a broadcasted input ndarray to corresponding\n elements in an output ndarray view.\n\n The function supports three (mutually exclusive) means of providing slice\n arguments:\n\n 1. Providing a single MultiSlice object.\n 2. Providing a single array containing slice arguments.\n 3. Providing slice arguments as separate arguments.\n\n An individual slice argument must be either a Slice, an integer, null, or\n undefined.\n\n In all cases, the number of slice dimensions must match the number of output\n array dimensions.\n\n If providing a MultiSlice object or an array of slice arguments, no other\n slice arguments should be provided.\n\n Mixing function invocation styles (e.g., providing multiple MultiSlice\n objects or providing an array of slice arguments followed by additional\n slice arguments) is not supported.\n\n Parameters\n ----------\n x: ndarray\n Input array. The input array must be broadcast compatible with the\n output array view and must have a data type which can be safely cast to\n the output array data type. Floating-point data types (both real and\n complex) are allowed to downcast to a lower precision data type of the\n same kind (e.g., element values from a 'float64' input array can be\n assigned to corresponding elements in a 'float32' output array).\n\n y: ndarray\n Output array. The output array must be writable.\n\n s: ...MultiSlice|Slice|null|undefined|integer|ArrayLike\n Slice arguments.\n\n options: Object (optional)\n Options.\n\n options.strict: boolean (optional)\n Boolean indicating whether to enforce strict bounds checking.\n Default: true.\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var y = ndzeros( [ 2, 2 ] )\n <ndarray>\n > var x = scalar2ndarray( 3.0 )\n <ndarray>\n > var s = new MultiSlice( null, 1 )\n <MultiSlice>\n > var out = ndsliceAssign( x, y, s )\n <ndarray>\n > var bool = ( out === y )\n true\n > ndarray2array( y )\n [ [ 0.0, 3.0 ], [ 0.0, 3.0 ] ]\n\n See Also\n --------\n array, ndarray, ndslice\n"
36903691
ndzeros,"\nndzeros( shape[, options] )\n Returns a zero-filled ndarray having a specified shape and data type.\n\n Parameters\n ----------\n shape: ArrayLikeObject<integer>|integer\n Array shape.\n\n options: Object (optional)\n Options.\n\n options.dtype: string (optional)\n Underlying data type. Default: 'float64'.\n\n options.order: string (optional)\n Specifies whether an array is row-major (C-style) or column-major\n (Fortran-style). Default: 'row-major'.\n\n options.mode: string (optional)\n Specifies how to handle indices which exceed array dimensions. If equal\n to 'throw', an ndarray instance throws an error when an index exceeds\n array dimensions. If equal to 'wrap', an ndarray instance wraps around\n indices exceeding array dimensions using modulo arithmetic. If equal to\n 'clamp', an ndarray instance sets an index exceeding array dimensions to\n either `0` (minimum index) or the maximum index. Default: 'throw'.\n\n options.submode: Array<string> (optional)\n Specifies how to handle subscripts which exceed array dimensions. If a\n mode for a corresponding dimension is equal to 'throw', an ndarray\n instance throws an error when a subscript exceeds array dimensions. If\n equal to 'wrap', an ndarray instance wraps around subscripts exceeding\n array dimensions using modulo arithmetic. If equal to 'clamp', an\n ndarray instance sets a subscript exceeding array dimensions to either\n `0` (minimum index) or the maximum index. If the number of modes is\n fewer than the number of dimensions, the function recycles modes using\n modulo arithmetic. Default: [ options.mode ].\n\n options.readonly: boolean (optional)\n Boolean indicating whether an array should be read-only. Default: false.\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var arr = ndzeros( [ 2, 2 ] )\n <ndarray>\n > var sh = arr.shape\n [ 2, 2 ]\n > var dt = arr.dtype\n 'float64'\n\n See Also\n --------\n ndempty, ndzerosLike\n"

lib/node_modules/@stdlib/repl/help/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/info/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -3679,6 +3679,7 @@ ndarraySafeCasts,"\nndarraySafeCasts( [dtype:any] )\n Returns a list of ndarr
36793679
ndarraySameKindCasts,"\nndarraySameKindCasts( [dtype:any] )\n Returns a list of ndarray data types to which a provided ndarray data type\n can be safely cast or cast within the same \"kind\".\n"
36803680
ndempty,"\nndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an uninitialized ndarray having a specified shape and data type.\n"
36813681
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"
3682+
ndims,"\nndims( x:ndarray )\n Returns the number of ndarray dimensions.\n"
36823683
nditerColumns,"\nnditerColumns( x:ndarray[, options:Object] )\n Returns an iterator which iterates over each column in a matrix (or stack of\n matrices).\n"
36833684
nditerEntries,"\nnditerEntries( x:ndarray[, options:Object] )\n Returns an iterator which returns [index, value] pairs for each element in a\n provided ndarray.\n"
36843685
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"

lib/node_modules/@stdlib/repl/info/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -3716,6 +3716,7 @@ ndarraySafeCasts,"ndarraySafeCasts( [dtype] )"
37163716
ndarraySameKindCasts,"ndarraySameKindCasts( [dtype] )"
37173717
ndempty,"ndempty( shape[, options] )"
37183718
ndemptyLike,"ndemptyLike( x[, options] )"
3719+
ndims,"ndims( x )"
37193720
nditerColumns,"nditerColumns( x[, options] )"
37203721
nditerEntries,"nditerEntries( x[, options] )"
37213722
nditerIndices,"nditerIndices( shape[, options] )"

lib/node_modules/@stdlib/repl/signature/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/typed-signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -3716,6 +3716,7 @@ ndarraySafeCasts,"ndarraySafeCasts( [dtype:any] )"
37163716
ndarraySameKindCasts,"ndarraySameKindCasts( [dtype:any] )"
37173717
ndempty,"ndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
37183718
ndemptyLike,"ndemptyLike( x:ndarray[, options:Object] )"
3719+
ndims,"ndims( x:ndarray )"
37193720
nditerColumns,"nditerColumns( x:ndarray[, options:Object] )"
37203721
nditerEntries,"nditerEntries( x:ndarray[, options:Object] )"
37213722
nditerIndices,"nditerIndices( shape:Array<integer>[, options:Object] )"

lib/node_modules/@stdlib/repl/typed-signature/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)