Skip to content

Commit e7595f6

Browse files
authored
docs: update REPL namespace documentation
PR-URL: #10666 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 278b4c0 commit e7595f6

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

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

Lines changed: 10 additions & 10 deletions
Large diffs are not rendered by default.

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2588,7 +2588,7 @@ BooleanArray.prototype.byteOffset,"\nBooleanArray.prototype.byteOffset\n Offs
25882588
BooleanArray.prototype.BYTES_PER_ELEMENT,"\nBooleanArray.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
25892589
BooleanArray.prototype.length,"\nBooleanArray.prototype.length\n The number of array elements.\n"
25902590
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"
2591-
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"
2591+
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"
25922592
BooleanArray.prototype.entries,"\nBooleanArray.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
25932593
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"
25942594
BooleanArray.prototype.fill,"\nBooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )\n Returns a modified typed array filled with a fill value.\n"
@@ -2613,12 +2613,12 @@ BooleanArray.prototype.slice,"\nBooleanArray.prototype.slice( [start:integer[, e
26132613
BooleanArray.prototype.some,"\nBooleanArray.prototype.some( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether at least one element passes a test.\n"
26142614
BooleanArray.prototype.sort,"\nBooleanArray.prototype.sort( [compareFunction:Function] )\n Sorts an array in-place.\n"
26152615
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"
2616-
BooleanArray.prototype.toLocaleString,"\nBooleanArray.prototype.toLocaleString( [locales[, options]] )\n Serializes an array as a locale-specific string.\n"
2616+
BooleanArray.prototype.toLocaleString,"\nBooleanArray.prototype.toLocaleString( [locales:string|Array[, \n options:Object]] )\n Serializes an array as a locale-specific string.\n"
26172617
BooleanArray.prototype.toReversed,"\nBooleanArray.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
26182618
BooleanArray.prototype.toSorted,"\nBooleanArray.prototype.toSorted( [compareFunction:Function] )\n Returns a new typed array containing the elements in sorted order.\n"
26192619
BooleanArray.prototype.toString,"\nBooleanArray.prototype.toString()\n Serializes an array as a string.\n"
26202620
BooleanArray.prototype.values,"\nBooleanArray.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n"
2621-
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"
2621+
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"
26222622
broadcastArray,"\nbroadcastArray( x:ndarray, shape:ArrayLikeObject )\n Broadcasts an ndarray to a specified shape.\n"
26232623
broadcastArrays,"\nbroadcastArrays( ...arrays:ndarray|ArrayLikeObject<ndarray> )\n Broadcasts ndarrays to a common shape.\n"
26242624
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"

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/typed-signature/data/data.csv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,7 +2593,7 @@ BooleanArray.prototype.byteOffset,"BooleanArray.prototype.byteOffset"
25932593
BooleanArray.prototype.BYTES_PER_ELEMENT,"BooleanArray.prototype.BYTES_PER_ELEMENT"
25942594
BooleanArray.prototype.length,"BooleanArray.prototype.length"
25952595
BooleanArray.prototype.at,"BooleanArray.prototype.at( i:integer )"
2596-
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target, start[, end] )"
2596+
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target:integer, start:integer[, end:integer] )"
25972597
BooleanArray.prototype.entries,"BooleanArray.prototype.entries()"
25982598
BooleanArray.prototype.every,"BooleanArray.prototype.every( predicate:Function[, thisArg:Any] )"
25992599
BooleanArray.prototype.fill,"BooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )"
@@ -2618,12 +2618,12 @@ BooleanArray.prototype.slice,"BooleanArray.prototype.slice( [start:integer[, end
26182618
BooleanArray.prototype.some,"BooleanArray.prototype.some( predicate:Function[, thisArg:Any] )"
26192619
BooleanArray.prototype.sort,"BooleanArray.prototype.sort( [compareFunction:Function] )"
26202620
BooleanArray.prototype.subarray,"BooleanArray.prototype.subarray( [begin:integer[, end:integer]] )"
2621-
BooleanArray.prototype.toLocaleString,"BooleanArray.prototype.toLocaleString( [locales[, options]] )"
2621+
BooleanArray.prototype.toLocaleString,"BooleanArray.prototype.toLocaleString( [locales:string|Array[, options:Object]] )"
26222622
BooleanArray.prototype.toReversed,"BooleanArray.prototype.toReversed()"
26232623
BooleanArray.prototype.toSorted,"BooleanArray.prototype.toSorted( [compareFunction:Function] )"
26242624
BooleanArray.prototype.toString,"BooleanArray.prototype.toString()"
26252625
BooleanArray.prototype.values,"BooleanArray.prototype.values()"
2626-
BooleanArray.prototype.with,"BooleanArray.prototype.with( index, value )"
2626+
BooleanArray.prototype.with,"BooleanArray.prototype.with( index:integer, value:boolean )"
26272627
broadcastArray,"broadcastArray( x:ndarray, shape:ArrayLikeObject )"
26282628
broadcastArrays,"broadcastArrays( ...arrays:ndarray|ArrayLikeObject<ndarray> )"
26292629
Buffer,"Buffer"

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)