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
20 changes: 10 additions & 10 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.

6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2588,7 +2588,7 @@ BooleanArray.prototype.byteOffset,"\nBooleanArray.prototype.byteOffset\n Offs
BooleanArray.prototype.BYTES_PER_ELEMENT,"\nBooleanArray.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
BooleanArray.prototype.length,"\nBooleanArray.prototype.length\n The number of array elements.\n"
BooleanArray.prototype.at,"\nBooleanArray.prototype.at( i:integer )\n Returns an array element located at integer position (index) `i`, with\n support for noth nonnegative and negative integer positions.\n"
BooleanArray.prototype.copyWithin,"\nBooleanArray.prototype.copyWithin( target, start[, end] )\n Copies a sequence of elements within the array starting at `start` and\n ending at `end` (non-inclusive) to the position starting at `target`.\n"
BooleanArray.prototype.copyWithin,"\nBooleanArray.prototype.copyWithin( target:integer, start:integer[, \n end:integer] )\n Copies a sequence of elements within the array starting at `start` and\n ending at `end` (non-inclusive) to the position starting at `target`.\n"
BooleanArray.prototype.entries,"\nBooleanArray.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
BooleanArray.prototype.every,"\nBooleanArray.prototype.every( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether all elements in the array pass a test.\n"
BooleanArray.prototype.fill,"\nBooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )\n Returns a modified typed array filled with a fill value.\n"
Expand All @@ -2613,12 +2613,12 @@ BooleanArray.prototype.slice,"\nBooleanArray.prototype.slice( [start:integer[, e
BooleanArray.prototype.some,"\nBooleanArray.prototype.some( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether at least one element passes a test.\n"
BooleanArray.prototype.sort,"\nBooleanArray.prototype.sort( [compareFunction:Function] )\n Sorts an array in-place.\n"
BooleanArray.prototype.subarray,"\nBooleanArray.prototype.subarray( [begin:integer[, end:integer]] )\n Creates a new typed array view over the same underlying `ArrayBuffer` and\n with the same underlying data type as the host array.\n"
BooleanArray.prototype.toLocaleString,"\nBooleanArray.prototype.toLocaleString( [locales[, options]] )\n Serializes an array as a locale-specific string.\n"
BooleanArray.prototype.toLocaleString,"\nBooleanArray.prototype.toLocaleString( [locales:string|Array[, \n options:Object]] )\n Serializes an array as a locale-specific string.\n"
BooleanArray.prototype.toReversed,"\nBooleanArray.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
BooleanArray.prototype.toSorted,"\nBooleanArray.prototype.toSorted( [compareFunction:Function] )\n Returns a new typed array containing the elements in sorted order.\n"
BooleanArray.prototype.toString,"\nBooleanArray.prototype.toString()\n Serializes an array as a string.\n"
BooleanArray.prototype.values,"\nBooleanArray.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n"
BooleanArray.prototype.with,"\nBooleanArray.prototype.with( index, value )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n"
BooleanArray.prototype.with,"\nBooleanArray.prototype.with( index:integer, value:boolean )\n Returns a new typed array with the element at a provided index replaced with\n a provided value.\n"
broadcastArray,"\nbroadcastArray( x:ndarray, shape:ArrayLikeObject )\n Broadcasts an ndarray to a specified shape.\n"
broadcastArrays,"\nbroadcastArrays( ...arrays:ndarray|ArrayLikeObject<ndarray> )\n Broadcasts ndarrays to a common shape.\n"
Buffer,"\nBuffer\n\nBuffer( size:integer )\n Allocates a buffer having a specified number of bytes.\n\nBuffer( buffer:Buffer )\n Copies buffer data to a new Buffer instance.\n\nBuffer( array:Array )\n Allocates a buffer using an array of octets.\n\nBuffer( str:string[, encoding:string] )\n Allocates a buffer containing a provided string.\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.

6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2593,7 +2593,7 @@ BooleanArray.prototype.byteOffset,"BooleanArray.prototype.byteOffset"
BooleanArray.prototype.BYTES_PER_ELEMENT,"BooleanArray.prototype.BYTES_PER_ELEMENT"
BooleanArray.prototype.length,"BooleanArray.prototype.length"
BooleanArray.prototype.at,"BooleanArray.prototype.at( i:integer )"
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target, start[, end] )"
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target:integer, start:integer[, end:integer] )"
BooleanArray.prototype.entries,"BooleanArray.prototype.entries()"
BooleanArray.prototype.every,"BooleanArray.prototype.every( predicate:Function[, thisArg:Any] )"
BooleanArray.prototype.fill,"BooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )"
Expand All @@ -2618,12 +2618,12 @@ BooleanArray.prototype.slice,"BooleanArray.prototype.slice( [start:integer[, end
BooleanArray.prototype.some,"BooleanArray.prototype.some( predicate:Function[, thisArg:Any] )"
BooleanArray.prototype.sort,"BooleanArray.prototype.sort( [compareFunction:Function] )"
BooleanArray.prototype.subarray,"BooleanArray.prototype.subarray( [begin:integer[, end:integer]] )"
BooleanArray.prototype.toLocaleString,"BooleanArray.prototype.toLocaleString( [locales[, options]] )"
BooleanArray.prototype.toLocaleString,"BooleanArray.prototype.toLocaleString( [locales:string|Array[, options:Object]] )"
BooleanArray.prototype.toReversed,"BooleanArray.prototype.toReversed()"
BooleanArray.prototype.toSorted,"BooleanArray.prototype.toSorted( [compareFunction:Function] )"
BooleanArray.prototype.toString,"BooleanArray.prototype.toString()"
BooleanArray.prototype.values,"BooleanArray.prototype.values()"
BooleanArray.prototype.with,"BooleanArray.prototype.with( index, value )"
BooleanArray.prototype.with,"BooleanArray.prototype.with( index:integer, value:boolean )"
broadcastArray,"broadcastArray( x:ndarray, shape:ArrayLikeObject )"
broadcastArrays,"broadcastArrays( ...arrays:ndarray|ArrayLikeObject<ndarray> )"
Buffer,"Buffer"
Expand Down

Large diffs are not rendered by default.