Skip to content

Commit ddb2fb7

Browse files
authored
docs: update REPL namespace documentation
PR-URL: #11984 Reviewed-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 583a833 commit ddb2fb7

8 files changed

Lines changed: 79 additions & 79 deletions

File tree

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

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

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: 40 additions & 40 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2674,7 +2674,7 @@ Complex64Array.prototype.byteOffset,"\nComplex64Array.prototype.byteOffset\n
26742674
Complex64Array.prototype.BYTES_PER_ELEMENT,"\nComplex64Array.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
26752675
Complex64Array.prototype.length,"\nComplex64Array.prototype.length\n The number of array elements.\n"
26762676
Complex64Array.prototype.at,"\nComplex64Array.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"
2677-
Complex64Array.prototype.copyWithin,"\nComplex64Array.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"
2677+
Complex64Array.prototype.copyWithin,"\nComplex64Array.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"
26782678
Complex64Array.prototype.entries,"\nComplex64Array.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
26792679
Complex64Array.prototype.every,"\nComplex64Array.prototype.every( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether all elements in the array pass a test.\n"
26802680
Complex64Array.prototype.fill,"\nComplex64Array.prototype.fill( value:Complex64[, start:integer[, end:integer]] )\n Returns a modified typed array filled with a fill value.\n"
@@ -2696,15 +2696,15 @@ Complex64Array.prototype.reduceRight,"\nComplex64Array.prototype.reduceRight( re
26962696
Complex64Array.prototype.reverse,"\nComplex64Array.prototype.reverse()\n Reverses the array *in-place*.\n"
26972697
Complex64Array.prototype.set,"\nComplex64Array.prototype.set( z:Complex64|Complex64Array|ArrayLikeObject[, \n i:integer] )\n Sets one or more array elements.\n"
26982698
Complex64Array.prototype.slice,"\nComplex64Array.prototype.slice( [start:integer[, end:integer]] )\n Copies a portion of a typed array to a new typed array.\n"
2699-
Complex64Array.prototype.some,"\nComplex64Array.prototype.some( predicate[, thisArg] )\n Returns a boolean indicating whether at least one element passes a test.\n"
2699+
Complex64Array.prototype.some,"\nComplex64Array.prototype.some( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether at least one element passes a test.\n"
27002700
Complex64Array.prototype.sort,"\nComplex64Array.prototype.sort( compareFunction:Function )\n Sorts an array in-place.\n"
27012701
Complex64Array.prototype.subarray,"\nComplex64Array.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"
2702-
Complex64Array.prototype.toLocaleString,"\nComplex64Array.prototype.toLocaleString( [locales[, options]] )\n Serializes an array as a locale-specific string.\n"
2702+
Complex64Array.prototype.toLocaleString,"\nComplex64Array.prototype.toLocaleString( [locales:string|Array[, \n options:Object]] )\n Serializes an array as a locale-specific string.\n"
27032703
Complex64Array.prototype.toReversed,"\nComplex64Array.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
27042704
Complex64Array.prototype.toSorted,"\nComplex64Array.prototype.toSorted( compareFcn:Function )\n Returns a new typed array containing the elements in sorted order.\n"
27052705
Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Serializes an array as a string.\n"
27062706
Complex64Array.prototype.values,"\nComplex64Array.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n"
2707-
Complex64Array.prototype.with,"\nComplex64Array.prototype.with( index, value )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n"
2707+
Complex64Array.prototype.with,"\nComplex64Array.prototype.with( index:integer, value:Complex64 )\n Returns a new typed array with the element at a provided index replaced\n with a provided value.\n"
27082708
Complex64Vector,"\nComplex64Vector( [options:Object] )\n Returns a one-dimensional single-precision complex floating-point ndarray.\n\nComplex64Vector( length:integer[, options:Object] )\n Returns a one-dimensional single-precision complex floating-point ndarray\n having a specified length.\n\nComplex64Vector( obj:Object[, options:Object] )\n Creates a one-dimensional single-precision complex floating-point ndarray\n from an array-like object or iterable.\n\nComplex64Vector( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]][, \n options:Object] )\n Returns a one-dimensional single-precision complex floating-point ndarray\n view of an ArrayBuffer.\n"
27092709
Complex128,"\nComplex128( real:number, imag:number )\n 128-bit complex number constructor.\n"
27102710
Complex128.name,"\nComplex128.name\n Constructor name.\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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@ Complex64Array.prototype.byteOffset,"Complex64Array.prototype.byteOffset"
26882688
Complex64Array.prototype.BYTES_PER_ELEMENT,"Complex64Array.prototype.BYTES_PER_ELEMENT"
26892689
Complex64Array.prototype.length,"Complex64Array.prototype.length"
26902690
Complex64Array.prototype.at,"Complex64Array.prototype.at( i:integer )"
2691-
Complex64Array.prototype.copyWithin,"Complex64Array.prototype.copyWithin( target, start[, end] )"
2691+
Complex64Array.prototype.copyWithin,"Complex64Array.prototype.copyWithin( target:integer, start:integer[, end:integer] )"
26922692
Complex64Array.prototype.entries,"Complex64Array.prototype.entries()"
26932693
Complex64Array.prototype.every,"Complex64Array.prototype.every( predicate:Function[, thisArg:Any] )"
26942694
Complex64Array.prototype.fill,"Complex64Array.prototype.fill( value:Complex64[, start:integer[, end:integer]] )"
@@ -2710,15 +2710,15 @@ Complex64Array.prototype.reduceRight,"Complex64Array.prototype.reduceRight( redu
27102710
Complex64Array.prototype.reverse,"Complex64Array.prototype.reverse()"
27112711
Complex64Array.prototype.set,"Complex64Array.prototype.set( z:Complex64|Complex64Array|ArrayLikeObject[, i:integer] )"
27122712
Complex64Array.prototype.slice,"Complex64Array.prototype.slice( [start:integer[, end:integer]] )"
2713-
Complex64Array.prototype.some,"Complex64Array.prototype.some( predicate[, thisArg] )"
2713+
Complex64Array.prototype.some,"Complex64Array.prototype.some( predicate:Function[, thisArg:Any] )"
27142714
Complex64Array.prototype.sort,"Complex64Array.prototype.sort( compareFunction:Function )"
27152715
Complex64Array.prototype.subarray,"Complex64Array.prototype.subarray( [begin:integer[, end:integer]] )"
2716-
Complex64Array.prototype.toLocaleString,"Complex64Array.prototype.toLocaleString( [locales[, options]] )"
2716+
Complex64Array.prototype.toLocaleString,"Complex64Array.prototype.toLocaleString( [locales:string|Array[, options:Object]] )"
27172717
Complex64Array.prototype.toReversed,"Complex64Array.prototype.toReversed()"
27182718
Complex64Array.prototype.toSorted,"Complex64Array.prototype.toSorted( compareFcn:Function )"
27192719
Complex64Array.prototype.toString,"Complex64Array.prototype.toString()"
27202720
Complex64Array.prototype.values,"Complex64Array.prototype.values()"
2721-
Complex64Array.prototype.with,"Complex64Array.prototype.with( index, value )"
2721+
Complex64Array.prototype.with,"Complex64Array.prototype.with( index:integer, value:Complex64 )"
27222722
Complex64Vector,"Complex64Vector( [options:Object] )"
27232723
Complex64Vector,"Complex64Vector( length:integer[, options:Object] )"
27242724
Complex64Vector,"Complex64Vector( obj:Object[, options:Object] )"

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)