Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5821,6 +5821,15 @@ Uint32Array.prototype.toLocaleString,"var arr = new Uint32Array( [ 1, 2, 3 ] );\
Uint32Array.prototype.toString,"var arr = new Uint32Array( [ 1, 2, 3 ] );\narr.toString()\n"
Uint32Array.prototype.values,"var arr = new Uint32Array( [ 1, 2 ] );\nit = arr.values();\nit.next().value\nit.next().value\nit.next().done\n"
Uint32Vector,"var arr = Uint32Vector()\nvar arr = Uint32Vector( 5 )\nvar len = numel( arr )\nvar v = [ 1, 2, 3 ];\nvar arr = Uint32Vector( v )\nvar len = numel( arr )\nvar buf = new ArrayBuffer( 32 );\nvar arr = Uint32Vector( buf, 0, 4 )\nvar len = numel( arr )\n"
Uint64,"var x = new Uint64( 5 )\nx.toString()\n"
Uint64.name,"var str = Uint64.name\n"
Uint64.from,"var v = Uint64.from( [ 1234, 5678 ] )\n"
Uint64.of,"var v = Uint64.of( 1234, 5678 )\n"
Uint64.BYTES_PER_ELEMENT,"var s = Uint64.BYTES_PER_ELEMENT\n"
Uint64.prototype.BYTES_PER_ELEMENT,"var x = new Uint64( 5 )\nvar s = x.BYTES_PER_ELEMENT\n"
Uint64.prototype.byteLength,"var x = new Uint64( 5 )\nvar s = x.byteLength\n"
Uint64.prototype.hi,"var x = Uint64.from( [ 1234, 5678 ] )\nvar w = x.hi\n"
Uint64.prototype.lo,"var x = Uint64.from( [ 1234, 5678 ] )\nvar w = x.lo\n"
umask,"var mask = umask()\nmask = umask( { 'symbolic': true } )\n"
uncapitalize,"var out = uncapitalize( 'Beep' )\nout = uncapitalize( 'bOOp' )\n"
uncapitalizeKeys,"var obj = { 'AA': 1, 'BB': 2 };\nvar out = uncapitalizeKeys( obj )\n"
Expand Down Expand Up @@ -5851,8 +5860,8 @@ US_STATES_NAMES,"var list = US_STATES_NAMES()\n"
US_STATES_NAMES_CAPITALS,"var out = US_STATES_NAMES_CAPITALS()\n"
utf16ToUTF8Array,"var str = '☃';\nvar out = utf16ToUTF8Array( str )\n"
vartest,"var x = [ 610, 610, 550, 590, 565, 570 ];\nvar y = [ 560, 550, 580, 550, 560, 590, 550, 590 ];\nvar out = vartest( x, y )\nvar table = out.print()\n"
vector,"var arr = vector()\narr = vector( 'float32' )\nvar arr = vector( 5 )\nvar len = numel( arr )\narr = vector( 5, 'float32' )\nlen = numel( arr )\nvar v = [ 0.5, 0.5, 0.5 ];\nvar arr = vector( v, 'float32' )\nvar len = numel( arr )\nvar buf = new ArrayBuffer( 32 );\nvar arr = vector( buf, 0, 4, 'float32' )\nvar len = numel( arr )\n"
vector.factory,"var f = vector.factory( 'float32' );\nvar arr = f()\n"
vector,"var arr = vector()\nvar dt = ndarrayDataType( arr )\narr = vector( 'float32' )\ndt = ndarrayDataType( arr )\nvar arr = vector( 5 )\nvar dt = ndarrayDataType( arr )\nvar len = numel( arr )\narr = vector( 5, 'float32' )\ndt = ndarrayDataType( arr )\nlen = numel( arr )\nvar v = [ 0.5, 0.5, 0.5 ];\nvar arr = vector( v, 'float32' )\nvar dt = ndarrayDataType( arr )\nvar len = numel( arr )\nvar buf = new ArrayBuffer( 32 );\nvar arr = vector( buf, 0, 4, 'float32' )\nvar dt = ndarrayDataType( arr )\nvar len = numel( arr )\n"
vector.factory,"var f = vector.factory( 'float32' );\nvar arr = f()\nvar dt = ndarrayDataType( arr )\n"
waterfall,"function foo( next ) { next( null, 'beep' ); };\nfunction bar( str, next ) { console.log( str ); next(); };\nfunction done( error ) { if ( error ) { throw error; } };\nvar fcns = [ foo, bar ];\nwaterfall( fcns, done );\n"
waterfall.factory,"function foo( next ) { next( null, 'beep' ); };\nfunction bar( str, next ) { console.log( str ); next(); };\nfunction done( error ) { if ( error ) { throw error; } };\nvar fcns = [ foo, bar ];\nvar waterfall = waterfall.factory( fcns, done );\nwaterfall();\nwaterfall();\nwaterfall();\n"
WebAssemblyMemory,"var mem = new WebAssemblyMemory( { 'initial': 0 } )\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.

4 changes: 2 additions & 2 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.

13 changes: 11 additions & 2 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5823,6 +5823,15 @@ Uint32Array.prototype.toLocaleString,"\nUint32Array.prototype.toLocaleString( [l
Uint32Array.prototype.toString,"\nUint32Array.prototype.toString()\n Serializes an array as a string.\n"
Uint32Array.prototype.values,"\nUint32Array.prototype.values()\n Returns an iterator for iterating over array elements.\n"
Uint32Vector,"\nUint32Vector( [options:Object] )\n Returns a one-dimensional unsigned 32-bit integer ndarray.\n\nUint32Vector( length:integer[, options:Object] )\n Returns a one-dimensional unsigned 32-bit integer ndarray having a specified\n length.\n\nUint32Vector( obj:Object[, options:Object] )\n Creates a one-dimensional unsigned 32-bit integer ndarray from an array-like\n object or iterable.\n\nUint32Vector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n options:Object] )\n Returns a one-dimensional unsigned 32-bit integer ndarray view of an\n ArrayBuffer.\n"
Uint64,"\nUint64( value:number|bigint )\n Unsigned 64-bit integer constructor.\n"
Uint64.name,"\nUint64.name\n Constructor name.\n"
Uint64.from,"\nUint64.from( words:ArrayLikeObject )\n Creates a new unsigned 64-bit integer from an array-like object containing a\n high and low word.\n"
Uint64.of,"\nUint64.of( high:integer, low:integer )\n Creates a new unsigned 64-bit integer from a high and low word.\n"
Uint64.BYTES_PER_ELEMENT,"\nUint64.BYTES_PER_ELEMENT\n Size (in bytes) of the underlying value.\n"
Uint64.prototype.BYTES_PER_ELEMENT,"\nUint64.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of the underlying value.\n"
Uint64.prototype.byteLength,"\nUint64.prototype.byteLength\n Size (in bytes) of the underlying value.\n"
Uint64.prototype.hi,"\nUint64.prototype.hi\n Returns the high 32-bit word of an unsigned 64-bit integer.\n"
Uint64.prototype.lo,"\nUint64.prototype.lo\n Returns the low 32-bit word of an unsigned 64-bit integer.\n"
umask,"\numask( [mask:integer|string,] [options:Object] )\n Returns the current process mask, if not provided a mask; otherwise, sets\n the process mask and returns the previous mask.\n"
uncapitalize,"\nuncapitalize( str:string )\n Lowercases the first character of a string.\n"
uncapitalizeKeys,"\nuncapitalizeKeys( obj:Object )\n Converts the first letter of each object key to lowercase.\n"
Expand Down Expand Up @@ -5853,8 +5862,8 @@ US_STATES_NAMES,"\nUS_STATES_NAMES()\n Returns a list of US state names in al
US_STATES_NAMES_CAPITALS,"\nUS_STATES_NAMES_CAPITALS()\n Returns an object mapping US state names to state capitals.\n"
utf16ToUTF8Array,"\nutf16ToUTF8Array( str:string )\n Converts a UTF-16 encoded string to an array of integers using UTF-8\n encoding.\n"
vartest,"\nvartest( x:Array<number>, y:Array<number>[, options:Object] )\n Computes a two-sample F-test for equal variances.\n"
vector,"\nvector( [dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray.\n\nvector( length:integer[, dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray having a specified length.\n\nvector( obj:Object[, dtype:string|DataType][, options:Object] )\n Creates a one-dimensional ndarray from an array-like object or iterable.\n\nvector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n dtype:string|DataType][, options:Object] )\n Returns a one-dimensional ndarray view of an ArrayBuffer.\n"
vector.factory,"\nvector.factory( dtype:string|DataType[, options:Object] )\n Returns a function for creating a one-dimensional ndarray.\n"
vector,"\nvector( [dtype:string][, options:Object] )\n Returns a one-dimensional ndarray.\n\nvector( length:integer[, dtype:string][, options:Object] )\n Returns a one-dimensional ndarray having a specified length.\n\nvector( obj:Object[, dtype:string][, options:Object] )\n Creates a one-dimensional ndarray from an array-like object or iterable.\n\nvector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n dtype:string][, options:Object] )\n Returns a one-dimensional ndarray view of an ArrayBuffer.\n"
vector.factory,"\nvector.factory( dtype:string[, options:Object] )\n Returns a function for creating a one-dimensional ndarray.\n"
waterfall,"\nwaterfall( fcns:Array<Function>, clbk:Function[, thisArg:any] )\n Executes functions in series, passing the results of one function as\n arguments to the next function.\n"
waterfall.factory,"\nwaterfall.factory( fcns:Array<Function>, clbk:Function[, thisArg:any] )\n Returns a reusable waterfall function.\n"
WebAssemblyMemory,"\nWebAssemblyMemory( descriptor:Object )\n WebAssembly memory constructor.\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.

9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5946,6 +5946,15 @@ Uint32Vector,"Uint32Vector( [options] )"
Uint32Vector,"Uint32Vector( length[, options] )"
Uint32Vector,"Uint32Vector( obj[, options] )"
Uint32Vector,"Uint32Vector( buffer[, byteOffset[, length]][, options] )"
Uint64,"Uint64( value )"
Uint64.name,"Uint64.name"
Uint64.from,"Uint64.from( words )"
Uint64.of,"Uint64.of( high, low )"
Uint64.BYTES_PER_ELEMENT,"Uint64.BYTES_PER_ELEMENT"
Uint64.prototype.BYTES_PER_ELEMENT,"Uint64.prototype.BYTES_PER_ELEMENT"
Uint64.prototype.byteLength,"Uint64.prototype.byteLength"
Uint64.prototype.hi,"Uint64.prototype.hi"
Uint64.prototype.lo,"Uint64.prototype.lo"
umask,"umask( [mask,] [options] )"
uncapitalize,"uncapitalize( str )"
uncapitalizeKeys,"uncapitalizeKeys( obj )"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

19 changes: 14 additions & 5 deletions lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5946,6 +5946,15 @@ Uint32Vector,"Uint32Vector( [options:Object] )"
Uint32Vector,"Uint32Vector( length:integer[, options:Object] )"
Uint32Vector,"Uint32Vector( obj:Object[, options:Object] )"
Uint32Vector,"Uint32Vector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, options:Object] )"
Uint64,"Uint64( value:number|bigint )"
Uint64.name,"Uint64.name"
Uint64.from,"Uint64.from( words:ArrayLikeObject )"
Uint64.of,"Uint64.of( high:integer, low:integer )"
Uint64.BYTES_PER_ELEMENT,"Uint64.BYTES_PER_ELEMENT"
Uint64.prototype.BYTES_PER_ELEMENT,"Uint64.prototype.BYTES_PER_ELEMENT"
Uint64.prototype.byteLength,"Uint64.prototype.byteLength"
Uint64.prototype.hi,"Uint64.prototype.hi"
Uint64.prototype.lo,"Uint64.prototype.lo"
umask,"umask( [mask:integer|string,] [options:Object] )"
uncapitalize,"uncapitalize( str:string )"
uncapitalizeKeys,"uncapitalizeKeys( obj:Object )"
Expand Down Expand Up @@ -5976,11 +5985,11 @@ US_STATES_NAMES,"US_STATES_NAMES()"
US_STATES_NAMES_CAPITALS,"US_STATES_NAMES_CAPITALS()"
utf16ToUTF8Array,"utf16ToUTF8Array( str:string )"
vartest,"vartest( x:Array<number>, y:Array<number>[, options:Object] )"
vector,"vector( [dtype:string|DataType][, options:Object] )"
vector,"vector( length:integer[, dtype:string|DataType][, options:Object] )"
vector,"vector( obj:Object[, dtype:string|DataType][, options:Object] )"
vector,"vector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, dtype:string|DataType][, options:Object] )"
vector.factory,"vector.factory( dtype:string|DataType[, options:Object] )"
vector,"vector( [dtype:string][, options:Object] )"
vector,"vector( length:integer[, dtype:string][, options:Object] )"
vector,"vector( obj:Object[, dtype:string][, options:Object] )"
vector,"vector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, dtype:string][, options:Object] )"
vector.factory,"vector.factory( dtype:string[, options:Object] )"
waterfall,"waterfall( fcns:Array<Function>, clbk:Function[, thisArg:any] )"
waterfall.factory,"waterfall.factory( fcns:Array<Function>, clbk:Function[, thisArg:any] )"
WebAssemblyMemory,"WebAssemblyMemory( descriptor:Object )"
Expand Down

Large diffs are not rendered by default.