Skip to content

Commit

Permalink
docs: update REPL namespace
Browse files Browse the repository at this point in the history
PR-URL: 	#1123
Co-authored-by: Athan Reines <[email protected]>
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
stdlib-bot and kgryte authored Oct 31, 2023
1 parent 7faffe3 commit b8b0fbe
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 12 deletions.
1 change: 1 addition & 0 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3695,6 +3695,7 @@ nditerValues,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );\nvar it = nditerValues( x
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"
ndsliceDimensionFrom,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\nx.shape\nvar y = ndsliceDimensionFrom( x, 1, 1 )\ny.shape\nndarray2array( y )\n"
ndsliceDimensionTo,"var x = array( [ [ 1, 2 ], [ 3, 4 ] ] )\nx.shape\nvar y = ndsliceDimensionTo( x, 1, 1 )\ny.shape\nndarray2array( y )\n"
ndzeros,"var arr = ndzeros( [ 2, 2 ] )\nvar sh = arr.shape\nvar dt = arr.dtype\n"
ndzerosLike,"var x = base.ndzeros( 'float64', [ 2, 2 ], 'row-major' )\nvar sh = x.shape\nvar dt = x.dtype\nvar y = ndzerosLike( x )\nsh = y.shape\ndt = y.dtype\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/data/contributor.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Ali Salesi","Amit Jimiwal","Athan Reines","Brendan Graetz","Bruno Fenzl","Christopher Dambamuromo","Dan Rose","Dominik Moritz","Dorrin Sotoudeh","Frank Kovacs","Harshita Kalani","James Gelok","Jithin KS","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Marcus Fantham","Matt Cochrane","Milan Raj","Momtchil Momtchev","Naresh Jagadeesan","Nithin Katta","Ognjen Jevremović","Philipp Burckhardt","Pranav Goswami","Ricky Reusser","Roman Stetsyk","Ryan Seal","Seyyed Parsa Neshaei","Shraddheya Shendre","Stephannie Jiménez Gacha","Yernar Yergaziyev","orimiles5","rei2hu"]
["Ali Salesi","Amit Jimiwal","Athan Reines","Brendan Graetz","Bruno Fenzl","Christopher Dambamuromo","Dan Rose","Dominik Moritz","Dorrin Sotoudeh","Frank Kovacs","Harshita Kalani","James Gelok","Jithin KS","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Marcus Fantham","Matt Cochrane","Milan Raj","Momtchil Momtchev","Naresh Jagadeesan","Nithin Katta","Ognjen Jevremović","Philipp Burckhardt","Pranav Goswami","Ricky Reusser","Roman Stetsyk","Ryan Seal","Seyyed Parsa Neshaei","Shraddheya Shendre","Stephannie Jiménez Gacha","Yernar Yergaziyev","orimiles5","rei2hu","rgizz"]
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/repl/help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3695,6 +3695,7 @@ nditerValues,"\nnditerValues( x:ndarray[, options:Object] )\n Returns an iter
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"
ndsliceDimensionFrom,"\nndsliceDimensionFrom( x:ndarray, dim:integer, start:integer[, options:Object] )\n Returns a read-only shifted view of an input ndarray along a specified\n dimension.\n"
ndsliceDimensionTo,"\nndsliceDimensionTo( x:ndarray, dim:integer, stop:integer[, options:Object] )\n Returns a read-only truncated view of an input ndarray along a specified\n dimension.\n"
ndzeros,"\nndzeros( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns a zero-filled ndarray having a specified shape and data type.\n"
ndzerosLike,"\nndzerosLike( x:ndarray[, options:Object] )\n Returns a zero-filled ndarray having the same shape and data type as a\n provided input ndarray.\n"
Expand Down Expand Up @@ -4243,7 +4244,7 @@ reUtf16SurrogatePair.REGEXP,"\nreUtf16SurrogatePair.REGEXP\n Regular expressi
reUtf16UnpairedSurrogate,"\nreUtf16UnpairedSurrogate()\n Returns a regular expression to match an unpaired UTF-16 surrogate.\n"
reUtf16UnpairedSurrogate.REGEXP,"\nreUtf16UnpairedSurrogate.REGEXP\n Regular expression to match an unpaired UTF-16 surrogate.\n"
reverseArguments,"\nreverseArguments( fcn:Function[, thisArg:any] )\n Returns a function that invokes a provided function with arguments in\n reverse order.\n"
reverseString,"\nreverseString( str:string )\n Reverses a `string`.\n"
reverseString,"\nreverseString( str:string[, options:Object] )\n Reverses a string.\n"
reviveBasePRNG,"\nreviveBasePRNG( key:string, value:any )\n Revives a JSON-serialized pseudorandom number generator (PRNG).\n"
reviveBuffer,"\nreviveBuffer( key:string, value:any )\n Revives a JSON-serialized Buffer.\n"
reviveComplex,"\nreviveComplex( key:string, value:any )\n Revives a JSON-serialized complex number.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3732,6 +3732,7 @@ nditerValues,"nditerValues( x[, options] )"
ndslice,"ndslice( x, ...s[, options] )"
ndsliceAssign,"ndsliceAssign( x, y, ...s[, options] )"
ndsliceDimension,"ndsliceDimension( x, dim, slice[, options] )"
ndsliceDimensionFrom,"ndsliceDimensionFrom( x, dim, start[, options] )"
ndsliceDimensionTo,"ndsliceDimensionTo( x, dim, stop[, options] )"
ndzeros,"ndzeros( shape[, options] )"
ndzerosLike,"ndzerosLike( x[, options] )"
Expand Down Expand Up @@ -4284,7 +4285,7 @@ reUtf16SurrogatePair.REGEXP,"reUtf16SurrogatePair.REGEXP"
reUtf16UnpairedSurrogate,"reUtf16UnpairedSurrogate()"
reUtf16UnpairedSurrogate.REGEXP,"reUtf16UnpairedSurrogate.REGEXP"
reverseArguments,"reverseArguments( fcn[, thisArg] )"
reverseString,"reverseString( str )"
reverseString,"reverseString( str[, options] )"
reviveBasePRNG,"reviveBasePRNG( key, value )"
reviveBuffer,"reviveBuffer( key, value )"
reviveComplex,"reviveComplex( key, value )"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3732,6 +3732,7 @@ nditerValues,"nditerValues( x:ndarray[, options:Object] )"
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] )"
ndsliceDimensionFrom,"ndsliceDimensionFrom( x:ndarray, dim:integer, start:integer[, options:Object] )"
ndsliceDimensionTo,"ndsliceDimensionTo( x:ndarray, dim:integer, stop:integer[, options:Object] )"
ndzeros,"ndzeros( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
ndzerosLike,"ndzerosLike( x:ndarray[, options:Object] )"
Expand Down Expand Up @@ -4284,7 +4285,7 @@ reUtf16SurrogatePair.REGEXP,"reUtf16SurrogatePair.REGEXP"
reUtf16UnpairedSurrogate,"reUtf16UnpairedSurrogate()"
reUtf16UnpairedSurrogate.REGEXP,"reUtf16UnpairedSurrogate.REGEXP"
reverseArguments,"reverseArguments( fcn:Function[, thisArg:any] )"
reverseString,"reverseString( str:string )"
reverseString,"reverseString( str:string[, options:Object] )"
reviveBasePRNG,"reviveBasePRNG( key:string, value:any )"
reviveBuffer,"reviveBuffer( key:string, value:any )"
reviveComplex,"reviveComplex( key:string, value:any )"
Expand Down

Large diffs are not rendered by default.

1 comment on commit b8b0fbe

@stdlib-bot
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
repl/code-blocks $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl $\color{red}4124/7307$
$\color{green}+56.44\%$
$\color{red}77/81$
$\color{green}+95.06\%$
$\color{red}5/91$
$\color{green}+5.49\%$
$\color{red}4124/7307$
$\color{green}+56.44\%$
repl/help $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl/info $\color{green}95/95$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}95/95$
$\color{green}+100.00\%$
repl/signature $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$
repl/typed-signature $\color{green}99/99$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}99/99$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.