Skip to content

Commit c89a171

Browse files
stdlib-botkgryte
andauthored
docs: update REPL namespace documentation
PR-URL: #2629 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com> Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent bd258a3 commit c89a171

File tree

16 files changed

+30
-15
lines changed

16 files changed

+30
-15
lines changed

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ base.cidentityf,"@stdlib/math-base-special-cidentityf"
211211
base.cinv,"@stdlib/math-base-special-cinv"
212212
base.clamp,"@stdlib/math-base-special-clamp"
213213
base.clampf,"@stdlib/math-base-special-clampf"
214-
base.cmul,"@stdlib/math-base-ops-cmul"
215-
base.cmulf,"@stdlib/math-base-ops-cmulf"
214+
base.cmul,"@stdlib/complex-float64-base-mul"
215+
base.cmulf,"@stdlib/complex-float32-base-mul"
216216
base.cneg,"@stdlib/math-base-ops-cneg"
217217
base.cnegf,"@stdlib/math-base-ops-cnegf"
218218
base.codePointAt,"@stdlib/string-base-code-point-at"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@
211211
"@stdlib/math/base/special/cinv","@stdlib/math-base-special-cinv"
212212
"@stdlib/math/base/special/clamp","@stdlib/math-base-special-clamp"
213213
"@stdlib/math/base/special/clampf","@stdlib/math-base-special-clampf"
214-
"@stdlib/complex/float64/base/mul","@stdlib/math-base-ops-cmul"
215-
"@stdlib/complex/float32/base/mul","@stdlib/math-base-ops-cmulf"
214+
"@stdlib/complex/float64/base/mul","@stdlib/complex-float64-base-mul"
215+
"@stdlib/complex/float32/base/mul","@stdlib/complex-float32-base-mul"
216216
"@stdlib/math/base/ops/cneg","@stdlib/math-base-ops-cneg"
217217
"@stdlib/math/base/ops/cnegf","@stdlib/math-base-ops-cnegf"
218218
"@stdlib/string/base/code-point-at","@stdlib/string-base-code-point-at"

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@
211211
"@stdlib/math-base-special-cinv","@stdlib/math/base/special/cinv"
212212
"@stdlib/math-base-special-clamp","@stdlib/math/base/special/clamp"
213213
"@stdlib/math-base-special-clampf","@stdlib/math/base/special/clampf"
214-
"@stdlib/math-base-ops-cmul","@stdlib/complex/float64/base/mul"
215-
"@stdlib/math-base-ops-cmulf","@stdlib/complex/float32/base/mul"
214+
"@stdlib/complex-float64-base-mul","@stdlib/complex/float64/base/mul"
215+
"@stdlib/complex-float32-base-mul","@stdlib/complex/float32/base/mul"
216216
"@stdlib/math-base-ops-cneg","@stdlib/math/base/ops/cneg"
217217
"@stdlib/math-base-ops-cnegf","@stdlib/math/base/ops/cnegf"
218218
"@stdlib/string-base-code-point-at","@stdlib/string/base/code-point-at"

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2572,13 +2572,16 @@ BooleanArray.prototype.byteOffset,"var arr = new BooleanArray( 10 )\nvar offset
25722572
BooleanArray.prototype.BYTES_PER_ELEMENT,"var arr = new BooleanArray( 10 )\narr.BYTES_PER_ELEMENT\n"
25732573
BooleanArray.prototype.length,"var arr = new BooleanArray( 10 )\nvar len = arr.length\n"
25742574
BooleanArray.prototype.at,"var arr = new BooleanArray( [ true, false, false, true ] )\nvar v = arr.at( 1 )\nv = arr.at( -1 )\n"
2575+
BooleanArray.prototype.copyWithin,"var arr = new BooleanArray( [ true, false, false, true ] )\narr.copyWithin( 0, 2 )\nvar v = arr.get( 0 )\nv = arr.get( 1 )\n"
2576+
BooleanArray.prototype.entries,"var arr = new BooleanArray( [ true, false, true ] )\nvar it = arr.entries();\nvar v = it.next().value\nv = it.next().value\nv = it.next().value\nvar bool = it.next().done\n"
25752577
BooleanArray.prototype.every,"function predicate( v ) { return v === true; };\nvar arr = new BooleanArray( [ true, true, true ] )\nvar bool = arr.every( predicate )\n"
25762578
BooleanArray.prototype.fill,"var arr = new BooleanArray( 3 )\narr.fill( true );\nvar v = arr.get( 0 )\nv = arr.get( 1 )\nv = arr.get( 2 )\n"
25772579
BooleanArray.prototype.filter,"function predicate( v ) { return ( v === true ); };\nvar arr = new BooleanArray( [ true, false, true ] )\nvar out = arr.filter( predicate )\nvar len = out.length\nvar v = out.get( 0 )\nv = out.get( 1 )\n"
25782580
BooleanArray.prototype.find,"function predicate( v ) { return v === true; };\nvar arr = new BooleanArray( [ true, false, true ] )\nvar v = arr.find( predicate )\n"
25792581
BooleanArray.prototype.findIndex,"function predicate( v ) { return v === true; };\nvar arr = new BooleanArray( [ true, false, true ] )\nvar idx = arr.findIndex( predicate )\n"
25802582
BooleanArray.prototype.findLast,"function predicate( v ) { return v === true; };\nvar arr = new BooleanArray( [ true, false, true ] )\nvar v = arr.findLast( predicate )\n"
25812583
BooleanArray.prototype.findLastIndex,"function predicate( v ) { return v === true; };\nvar arr = new BooleanArray( [ true, false, true ] )\nvar idx = arr.findLastIndex( predicate )\n"
2584+
BooleanArray.prototype.forEach,"var str = '%';\nfunction clbk( v ) { str += v.toString() + '%'; };\nvar arr = new BooleanArray( [ true, false, false, true ] )\narr.forEach( clbk );\nstr\n"
25822585
BooleanArray.prototype.get,"var arr = new BooleanArray( 10 )\narr.set( true, 0 );\nvar v = arr.get( 0 )\n"
25832586
BooleanArray.prototype.includes,"var arr = new BooleanArray( [ true, false, true, true, true ] )\nvar bool = arr.includes( true )\nbool = arr.includes( false, 3 )\n"
25842587
BooleanArray.prototype.indexOf,"var arr = new BooleanArray( [ true, false, true, true, true ] )\nvar idx = arr.indexOf( true )\nidx = arr.indexOf( false, 3 )\n"

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: 4 additions & 1 deletion
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2572,13 +2572,16 @@ BooleanArray.prototype.byteOffset,"\nBooleanArray.prototype.byteOffset\n Offs
25722572
BooleanArray.prototype.BYTES_PER_ELEMENT,"\nBooleanArray.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
25732573
BooleanArray.prototype.length,"\nBooleanArray.prototype.length\n The number of array elements.\n"
25742574
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"
2575+
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"
2576+
BooleanArray.prototype.entries,"\nBooleanArray.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
25752577
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"
25762578
BooleanArray.prototype.fill,"\nBooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )\n Returns a modified typed array filled with a fill value.\n"
25772579
BooleanArray.prototype.filter,"\nBooleanArray.prototype.filter( predicate:Function[, thisArg:Any] )\n Returns a new array containing the elements of an array which pass a test\n implemented by a predicate function.\n"
25782580
BooleanArray.prototype.find,"\nBooleanArray.prototype.find( predicate:Function[, thisArg:Any] )\n Returns the first element in an array for which a predicate function returns\n a truthy value.\n"
25792581
BooleanArray.prototype.findIndex,"\nBooleanArray.prototype.findIndex( predicate:Function[, thisArg:Any] )\n Returns the index of the first element in an array for which a predicate\n function returns a truthy value.\n"
25802582
BooleanArray.prototype.findLast,"\nBooleanArray.prototype.findLast( predicate:Function[, thisArg:Any] )\n Returns the last element in an array for which a predicate function returns\n a truthy value.\n"
25812583
BooleanArray.prototype.findLastIndex,"\nBooleanArray.prototype.findLastIndex( predicate:Function[, thisArg:Any] )\n Returns the index of the last element in an array for which a predicate\n function returns a truthy value.\n"
2584+
BooleanArray.prototype.forEach,"\nBooleanArray.prototype.forEach( clbk:Function[, thisArg:Any] )\n Invokes a function once for each array element.\n"
25822585
BooleanArray.prototype.get,"\nBooleanArray.prototype.get( i:integer )\n Returns an array element located at integer position (index) `i`.\n"
25832586
BooleanArray.prototype.includes,"\nBooleanArray.prototype.includes( searchElement:boolean[, fromIndex:integer] )\n Returns a boolean indicating whether an array includes a provided value.\n"
25842587
BooleanArray.prototype.indexOf,"\nBooleanArray.prototype.indexOf( searchElement:boolean[, fromIndex:integer] )\n Returns the first index at which a given element can be found.\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/signature/data/data.csv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2578,13 +2578,16 @@ BooleanArray.prototype.byteOffset,"BooleanArray.prototype.byteOffset"
25782578
BooleanArray.prototype.BYTES_PER_ELEMENT,"BooleanArray.prototype.BYTES_PER_ELEMENT"
25792579
BooleanArray.prototype.length,"BooleanArray.prototype.length"
25802580
BooleanArray.prototype.at,"BooleanArray.prototype.at( i )"
2581+
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target, start[, end] )"
2582+
BooleanArray.prototype.entries,"BooleanArray.prototype.entries()"
25812583
BooleanArray.prototype.every,"BooleanArray.prototype.every( predicate[, thisArg] )"
25822584
BooleanArray.prototype.fill,"BooleanArray.prototype.fill( value[, start[, end]] )"
25832585
BooleanArray.prototype.filter,"BooleanArray.prototype.filter( predicate[, thisArg] )"
25842586
BooleanArray.prototype.find,"BooleanArray.prototype.find( predicate[, thisArg] )"
25852587
BooleanArray.prototype.findIndex,"BooleanArray.prototype.findIndex( predicate[, thisArg] )"
25862588
BooleanArray.prototype.findLast,"BooleanArray.prototype.findLast( predicate[, thisArg] )"
25872589
BooleanArray.prototype.findLastIndex,"BooleanArray.prototype.findLastIndex( predicate[, thisArg] )"
2590+
BooleanArray.prototype.forEach,"BooleanArray.prototype.forEach( clbk[, thisArg] )"
25882591
BooleanArray.prototype.get,"BooleanArray.prototype.get( i )"
25892592
BooleanArray.prototype.includes,"BooleanArray.prototype.includes( searchElement[, fromIndex] )"
25902593
BooleanArray.prototype.indexOf,"BooleanArray.prototype.indexOf( searchElement[, fromIndex] )"

lib/node_modules/@stdlib/repl/signature/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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2578,13 +2578,16 @@ BooleanArray.prototype.byteOffset,"BooleanArray.prototype.byteOffset"
25782578
BooleanArray.prototype.BYTES_PER_ELEMENT,"BooleanArray.prototype.BYTES_PER_ELEMENT"
25792579
BooleanArray.prototype.length,"BooleanArray.prototype.length"
25802580
BooleanArray.prototype.at,"BooleanArray.prototype.at( i:integer )"
2581+
BooleanArray.prototype.copyWithin,"BooleanArray.prototype.copyWithin( target, start[, end] )"
2582+
BooleanArray.prototype.entries,"BooleanArray.prototype.entries()"
25812583
BooleanArray.prototype.every,"BooleanArray.prototype.every( predicate:Function[, thisArg:Any] )"
25822584
BooleanArray.prototype.fill,"BooleanArray.prototype.fill( value:boolean[, start:integer[, end:integer]] )"
25832585
BooleanArray.prototype.filter,"BooleanArray.prototype.filter( predicate:Function[, thisArg:Any] )"
25842586
BooleanArray.prototype.find,"BooleanArray.prototype.find( predicate:Function[, thisArg:Any] )"
25852587
BooleanArray.prototype.findIndex,"BooleanArray.prototype.findIndex( predicate:Function[, thisArg:Any] )"
25862588
BooleanArray.prototype.findLast,"BooleanArray.prototype.findLast( predicate:Function[, thisArg:Any] )"
25872589
BooleanArray.prototype.findLastIndex,"BooleanArray.prototype.findLastIndex( predicate:Function[, thisArg:Any] )"
2590+
BooleanArray.prototype.forEach,"BooleanArray.prototype.forEach( clbk:Function[, thisArg:Any] )"
25882591
BooleanArray.prototype.get,"BooleanArray.prototype.get( i:integer )"
25892592
BooleanArray.prototype.includes,"BooleanArray.prototype.includes( searchElement:boolean[, fromIndex:integer] )"
25902593
BooleanArray.prototype.indexOf,"BooleanArray.prototype.indexOf( searchElement:boolean[, fromIndex:integer] )"

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)