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
54 changes: 27 additions & 27 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

80 changes: 40 additions & 40 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.

8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2674,7 +2674,7 @@ Complex64Array.prototype.byteOffset,"\nComplex64Array.prototype.byteOffset\n
Complex64Array.prototype.BYTES_PER_ELEMENT,"\nComplex64Array.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
Complex64Array.prototype.length,"\nComplex64Array.prototype.length\n The number of array elements.\n"
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"
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"
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"
Complex64Array.prototype.entries,"\nComplex64Array.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
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"
Complex64Array.prototype.fill,"\nComplex64Array.prototype.fill( value:Complex64[, start:integer[, end:integer]] )\n Returns a modified typed array filled with a fill value.\n"
Expand All @@ -2696,15 +2696,15 @@ Complex64Array.prototype.reduceRight,"\nComplex64Array.prototype.reduceRight( re
Complex64Array.prototype.reverse,"\nComplex64Array.prototype.reverse()\n Reverses the array *in-place*.\n"
Complex64Array.prototype.set,"\nComplex64Array.prototype.set( z:Complex64|Complex64Array|ArrayLikeObject[, \n i:integer] )\n Sets one or more array elements.\n"
Complex64Array.prototype.slice,"\nComplex64Array.prototype.slice( [start:integer[, end:integer]] )\n Copies a portion of a typed array to a new typed array.\n"
Complex64Array.prototype.some,"\nComplex64Array.prototype.some( predicate[, thisArg] )\n Returns a boolean indicating whether at least one element passes a test.\n"
Complex64Array.prototype.some,"\nComplex64Array.prototype.some( predicate:Function[, thisArg:Any] )\n Returns a boolean indicating whether at least one element passes a test.\n"
Complex64Array.prototype.sort,"\nComplex64Array.prototype.sort( compareFunction:Function )\n Sorts an array in-place.\n"
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"
Complex64Array.prototype.toLocaleString,"\nComplex64Array.prototype.toLocaleString( [locales[, options]] )\n Serializes an array as a locale-specific string.\n"
Complex64Array.prototype.toLocaleString,"\nComplex64Array.prototype.toLocaleString( [locales:string|Array[, \n options:Object]] )\n Serializes an array as a locale-specific string.\n"
Complex64Array.prototype.toReversed,"\nComplex64Array.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
Complex64Array.prototype.toSorted,"\nComplex64Array.prototype.toSorted( compareFcn:Function )\n Returns a new typed array containing the elements in sorted order.\n"
Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Serializes an array as a string.\n"
Complex64Array.prototype.values,"\nComplex64Array.prototype.values()\n Returns an iterator for iterating over each value in a typed array.\n"
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"
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"
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"
Complex128,"\nComplex128( real:number, imag:number )\n 128-bit complex number constructor.\n"
Complex128.name,"\nComplex128.name\n Constructor name.\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.

8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/repl/typed-signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2688,7 +2688,7 @@ Complex64Array.prototype.byteOffset,"Complex64Array.prototype.byteOffset"
Complex64Array.prototype.BYTES_PER_ELEMENT,"Complex64Array.prototype.BYTES_PER_ELEMENT"
Complex64Array.prototype.length,"Complex64Array.prototype.length"
Complex64Array.prototype.at,"Complex64Array.prototype.at( i:integer )"
Complex64Array.prototype.copyWithin,"Complex64Array.prototype.copyWithin( target, start[, end] )"
Complex64Array.prototype.copyWithin,"Complex64Array.prototype.copyWithin( target:integer, start:integer[, end:integer] )"
Complex64Array.prototype.entries,"Complex64Array.prototype.entries()"
Complex64Array.prototype.every,"Complex64Array.prototype.every( predicate:Function[, thisArg:Any] )"
Complex64Array.prototype.fill,"Complex64Array.prototype.fill( value:Complex64[, start:integer[, end:integer]] )"
Expand All @@ -2710,15 +2710,15 @@ Complex64Array.prototype.reduceRight,"Complex64Array.prototype.reduceRight( redu
Complex64Array.prototype.reverse,"Complex64Array.prototype.reverse()"
Complex64Array.prototype.set,"Complex64Array.prototype.set( z:Complex64|Complex64Array|ArrayLikeObject[, i:integer] )"
Complex64Array.prototype.slice,"Complex64Array.prototype.slice( [start:integer[, end:integer]] )"
Complex64Array.prototype.some,"Complex64Array.prototype.some( predicate[, thisArg] )"
Complex64Array.prototype.some,"Complex64Array.prototype.some( predicate:Function[, thisArg:Any] )"
Complex64Array.prototype.sort,"Complex64Array.prototype.sort( compareFunction:Function )"
Complex64Array.prototype.subarray,"Complex64Array.prototype.subarray( [begin:integer[, end:integer]] )"
Complex64Array.prototype.toLocaleString,"Complex64Array.prototype.toLocaleString( [locales[, options]] )"
Complex64Array.prototype.toLocaleString,"Complex64Array.prototype.toLocaleString( [locales:string|Array[, options:Object]] )"
Complex64Array.prototype.toReversed,"Complex64Array.prototype.toReversed()"
Complex64Array.prototype.toSorted,"Complex64Array.prototype.toSorted( compareFcn:Function )"
Complex64Array.prototype.toString,"Complex64Array.prototype.toString()"
Complex64Array.prototype.values,"Complex64Array.prototype.values()"
Complex64Array.prototype.with,"Complex64Array.prototype.with( index, value )"
Complex64Array.prototype.with,"Complex64Array.prototype.with( index:integer, value:Complex64 )"
Complex64Vector,"Complex64Vector( [options:Object] )"
Complex64Vector,"Complex64Vector( length:integer[, options:Object] )"
Complex64Vector,"Complex64Vector( obj:Object[, options:Object] )"
Expand Down

Large diffs are not rendered by default.

Loading