Skip to content

Commit 1aa6f0f

Browse files
authored
docs: update REPL namespace documentation
PR-URL: #6338 Reviewed-by: Athan Reines <[email protected]>
1 parent d8f2acf commit 1aa6f0f

File tree

10 files changed

+10
-6
lines changed

10 files changed

+10
-6
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4161,6 +4161,7 @@ ndat,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nndat( x, 0, 1 )\nndat( x, 1, 0 )
41614161
ndempty,"var arr = ndempty( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
41624162
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"
41634163
ndfill,"var opts = { 'dtype': 'float64' };\nvar x = ndzeros( [ 2, 2 ], opts );\nx.get( 0, 0 )\nndfill( x, 10.0 );\nx.get( 0, 0 )\n"
4164+
ndfillBy,"var opts = { 'dtype': 'float64' };\nvar x = ndzeros( [ 2, 2 ], opts );\nx.get( 0, 0 )\nfunction fcn() { return 10.0; };\nndfillBy( x, fcn );\nx.get( 0, 0 )\nx.get( 0, 1 )\nx.get( 1, 0 )\nx.get( 1, 1 )\n"
41644165
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"
41654166
ndfilterMap,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v > 2.0 ) { return v * 10.0; } };\nvar y = ndfilterMap( x, f );\nndarray2array( y )\n"
41664167
ndforEach,"var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\nfunction f( v ) { if ( v !== v ) { throw new Error( '...' ); } };\nndforEach( x, f );\n"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4161,7 +4161,7 @@ ndarrayStrides,"\nndarrayStrides( x )\n Returns the strides of a provided nda
41614161
ndat,"\nndat( x[, ...indices] )\n Returns an ndarray element.\n\n Negative indices are resolved relative to the last element along the\n respective dimension, with the last element corresponding to `-1`.\n\n If provided out-of-bounds indices, the function always returns `undefined`.\n\n Parameters\n ----------\n x: ndarray\n Input ndarray.\n\n indices: ...integer (optional)\n Index arguments. The number of index arguments must equal the number of\n dimensions.\n\n Returns\n -------\n out: any\n Element value.\n\n Examples\n --------\n > var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\n > ndat( x, 0, 1 )\n 2\n > ndat( x, 1, 0 )\n 3\n\n See Also\n --------\n array, ndslice\n"
41624162
ndempty,"\nndempty( shape[, options] )\n Returns an uninitialized ndarray having a specified shape and data type.\n\n In browser environments, the function always returns zero-filled ndarrays.\n\n If `dtype` is 'generic', the function always returns a zero-filled ndarray.\n\n For returned ndarrays whose underlying memory is *not* initialized, memory\n contents are unknown and may contain *sensitive* data.\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 'normalize', an ndarray instance\n normalizes negative indices and 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\n to 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 'normalize', an ndarray instance normalizes negative\n subscripts and throws an error when a subscript exceeds array\n dimensions. If equal to 'wrap', an ndarray instance wraps around\n subscripts exceeding array dimensions using modulo arithmetic. If equal\n to 'clamp', an ndarray instance sets a subscript exceeding array\n dimensions to either `0` (minimum index) or the maximum index. If the\n number of modes is fewer than the number of dimensions, the function\n recycles modes using modulo arithmetic. Default: [ options.mode ].\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var arr = ndempty( [ 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 ndemptyLike, ndzeros\n"
41634163
ndemptyLike,"\nndemptyLike( x[, options] )\n Returns an uninitialized ndarray having the same shape and data type as a\n provided input ndarray.\n\n The function infers the following attributes from the input array:\n\n - shape: array shape.\n - dtype: underlying array data type.\n - order: whether the array order is row-major (C-style) or column-major\n (Fortran-style).\n\n In browser environments, the function always returns zero-filled ndarrays.\n\n If `dtype` is 'generic', the function always returns a zero-filled ndarray.\n\n For returned ndarrays whose underlying memory is *not* initialized, memory\n contents are unknown and may contain *sensitive* data.\n\n Parameters\n ----------\n x: ndarray\n Input array.\n\n options: Object (optional)\n Options.\n\n options.shape: ArrayLikeObject<integer>|integer (optional)\n Array shape. Overrides the input array's inferred shape.\n\n options.dtype: string (optional)\n Array data type. Overrides the input array's inferred data type.\n\n options.order: string (optional)\n Array order (either 'row-major' (C-style) or 'column-major' (Fortran-\n style)). Overrides the input array's inferred order.\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 'normalize', an ndarray instance\n normalizes negative indices and 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\n to 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 'normalize', an ndarray instance normalizes negative\n subscripts and throws an error when a subscript exceeds array\n dimensions. If equal to 'wrap', an ndarray instance wraps around\n subscripts exceeding array dimensions using modulo arithmetic. If equal\n to 'clamp', an ndarray instance sets a subscript exceeding array\n dimensions to either `0` (minimum index) or the maximum index. If the\n number of modes is fewer than the number of dimensions, the function\n recycles modes using modulo arithmetic. Default: [ options.mode ].\n\n Returns\n -------\n out: ndarray\n Output array.\n\n Examples\n --------\n > var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\n <ndarray>\n > var sh = x.shape\n [ 2, 2 ]\n > var dt = x.dtype\n 'float64'\n > var y = ndemptyLike( x )\n <ndarray>\n > sh = y.shape\n [ 2, 2 ]\n > dt = y.dtype\n 'float64'\n\n See Also\n --------\n ndempty, ndzerosLike\n"
4164-
ndfill,"\nndfill( x, value )\n Fills an input ndarray with a specified value.\n\n If `value` is a number and `x` has a complex data type, the function fills\n an input ndarray with a complex number whose real component equals the\n provided scalar `value` and whose imaginary component is zero.\n\n The function *mutates* the input ndarray.\n\n Parameters\n ----------\n x: ndarrayLike\n Input ndarray.\n\n value: any\n Scalar value.\n\n Returns\n -------\n out: ndarrayLike\n Input ndarray.\n\n Examples\n --------\n > var opts = { 'dtype': 'float64' };\n > var x = ndzeros( [ 2, 2 ], opts );\n > x.get( 0, 0 )\n 0.0\n > ndfill( x, 10.0 );\n > x.get( 0, 0 )\n 10.0\n\n See Also\n --------\n ndmap, ndzeros\n"
4164+
ndfill,"\nndfill( x, value )\n Fills an input ndarray with a specified value.\n\n If `value` is a number and `x` has a complex data type, the function fills\n an input ndarray with a complex number whose real component equals the\n provided scalar `value` and whose imaginary component is zero.\n\n The function *mutates* the input ndarray.\n\n Parameters\n ----------\n x: ndarrayLike\n Input ndarray.\n\n value: any\n Scalar value. Must be able to safely cast to the input ndarray data\n type. Scalar values having 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., a scalar double-precision floating-point number can be\n used to fill a 'float32' input ndarray).\n\n Returns\n -------\n out: ndarrayLike\n Input ndarray.\n\n Examples\n --------\n > var opts = { 'dtype': 'float64' };\n > var x = ndzeros( [ 2, 2 ], opts );\n > x.get( 0, 0 )\n 0.0\n > ndfill( x, 10.0 );\n > x.get( 0, 0 )\n 10.0\n\n See Also\n --------\n ndfillBy, ndmap, ndzeros\n"
41654165
ndfillBy,"\nndfillBy( x, fcn[, thisArg] )\n Fills an input ndarray according to a callback function.\n\n The function *mutates* the input ndarray.\n\n Parameters\n ----------\n x: ndarrayLike\n Input ndarray.\n\n fcn: Function\n Callback function.\n\n thisArg: any (optional)\n Callback function execution context.\n\n Returns\n -------\n out: ndarrayLike\n Input ndarray.\n\n Examples\n --------\n > var opts = { 'dtype': 'float64' };\n > var x = ndzeros( [ 2, 2 ], opts );\n > x.get( 0, 0 )\n 0.0\n > function fcn() { return 10.0; };\n > ndfillBy( x, fcn );\n > x.get( 0, 0 )\n 10.0\n > x.get( 0, 1 )\n 10.0\n > x.get( 1, 0 )\n 10.0\n > x.get( 1, 1 )\n 10.0\n\n See Also\n --------\n ndfill, ndmap, ndzeros\n"
41664166
ndfilter,"\nndfilter( x[, options], predicate[, thisArg] )\n Returns a shallow copy of an ndarray containing only those elements which\n pass a test implemented by a predicate function.\n\n The predicate function is provided the following arguments:\n\n - value: current array element.\n - indices: current array element indices.\n - arr: the input ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input ndarray.\n\n options: Object (optional)\n Function options.\n\n options.dtype: string (optional)\n Output ndarray data type. Overrides using the input array's inferred\n data type.\n\n options.order: string (optional)\n Index iteration order. By default, the function iterates over elements\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 manner, 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 predicate: Function\n Predicate function.\n\n thisArg: any (optional)\n Predicate function execution context.\n\n Examples\n --------\n > var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\n > function f( v ) { return v > 2.0; };\n > var y = ndfilter( x, f );\n > ndarray2array( y )\n [ 3.0, 4.0 ]\n\n See Also\n --------\n ndfilterMap, ndmap, ndreject, ndslice"
41674167
ndfilterMap,"\nndfilterMap( x[, options], fcn[, thisArg] )\n Filters and maps elements in an input ndarray to elements in a new output\n ndarray according to a callback function.\n\n The callback function is provided the following arguments:\n\n - value: current array element.\n - indices: current array element indices.\n - arr: the input ndarray.\n\n If a provided callback function returns `undefined`, the function skips the\n respective ndarray element. If the callback function returns a value other\n than `undefined`, the function stores the callback's return value in the\n output ndarray.\n\n Parameters\n ----------\n x: ndarray\n Input ndarray.\n\n options: Object (optional)\n Function options.\n\n options.dtype: string (optional)\n Output ndarray data type. Overrides using the input array's inferred\n data type.\n\n options.order: string (optional)\n Index iteration order. By default, the function iterates over elements\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 manner, 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 fcn: Function\n Callback function.\n\n thisArg: any (optional)\n Callback function execution context.\n\n Examples\n --------\n > var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );\n > function f( v ) { if ( v > 2.0 ) { return v * 10.0; } };\n > var y = ndfilterMap( x, f );\n > ndarray2array( y )\n [ 30.0, 40.0 ]\n\n See Also\n --------\n ndfilter, ndmap, ndreject, ndslice"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4162,6 +4162,7 @@ ndat,"\nndat( x:ndarray[, ...indices:integer] )\n Returns an ndarray element.
41624162
ndempty,"\nndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an uninitialized ndarray having a specified shape and data type.\n"
41634163
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"
41644164
ndfill,"\nndfill( x:ndarrayLike, value:any )\n Fills an input ndarray with a specified value.\n"
4165+
ndfillBy,"\nndfillBy( x:ndarrayLike, fcn:Function[, thisArg:any] )\n Fills an input ndarray according to a callback function.\n"
41654166
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"
41664167
ndfilterMap,"\nndfilterMap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )\n Filters and maps elements in an input ndarray to elements in a new output\n ndarray according to a callback function.\n"
41674168
ndforEach,"\nndforEach( x:ndarray, fcn:Function[, thisArg:any] )\n Invokes a callback function once for each ndarray element.\n"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4213,6 +4213,7 @@ ndat,"ndat( x[, ...indices] )"
42134213
ndempty,"ndempty( shape[, options] )"
42144214
ndemptyLike,"ndemptyLike( x[, options] )"
42154215
ndfill,"ndfill( x, value )"
4216+
ndfillBy,"ndfillBy( x, fcn[, thisArg] )"
42164217
ndfilter,"ndfilter( x[, options], predicate[, thisArg] )"
42174218
ndfilterMap,"ndfilterMap( x[, options], fcn[, thisArg] )"
42184219
ndforEach,"ndforEach( x, fcn[, thisArg] )"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4213,6 +4213,7 @@ ndat,"ndat( x:ndarray[, ...indices:integer] )"
42134213
ndempty,"ndempty( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
42144214
ndemptyLike,"ndemptyLike( x:ndarray[, options:Object] )"
42154215
ndfill,"ndfill( x:ndarrayLike, value:any )"
4216+
ndfillBy,"ndfillBy( x:ndarrayLike, fcn:Function[, thisArg:any] )"
42164217
ndfilter,"ndfilter( x:ndarray[, options:Object], predicate:Function[, thisArg:any] )"
42174218
ndfilterMap,"ndfilterMap( x:ndarray[, options:Object], fcn:Function[, thisArg:any] )"
42184219
ndforEach,"ndforEach( x:ndarray, fcn:Function[, thisArg:any] )"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)