You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/repl/info/data/data.csv
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ alias2standalone,"\nalias2standalone( alias:string )\n Returns the standalone
16
16
aliases,"\naliases( [namespace:string] )\n Returns a list of standard library aliases.\n"
17
17
allocUnsafe,"\nallocUnsafe( size:integer )\n Allocates a buffer having a specified number of bytes.\n"
18
18
amskfilter,"\namskfilter( x:Array|TypedArray|Object, mask:Array|TypedArray|Object )\n Returns a new array by applying a mask to a provided input array.\n"
19
+
amskput,"\namskput( x:ArrayLikeObject, mask:ArrayLikeObject, values:ArrayLikeObject[, \n options:Object] )\n Replaces elements of an array with provided values according to a provided\n mask array.\n"
19
20
amskreject,"\namskreject( x:Array|TypedArray|Object, mask:Array|TypedArray|Object )\n Returns a new array by applying a mask to a provided input array.\n"
20
21
anans,"\nanans( length:integer[, dtype:string] )\n Returns an array filled with NaNs and having a specified length.\n"
21
22
anansLike,"\nanansLike( x:TypedArray|Array[, dtype:string] )\n Returns an array filled with NaNs and having the same length and data type\n as a provided input array.\n"
BooleanArray.prototype.byteOffset,"\nBooleanArray.prototype.byteOffset\n Offset (in bytes) of the array from the start of its underlying\n ArrayBuffer.\n"
2571
2572
BooleanArray.prototype.BYTES_PER_ELEMENT,"\nBooleanArray.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
2572
2573
BooleanArray.prototype.length,"\nBooleanArray.prototype.length\n The number of array elements.\n"
2574
+
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"
2573
2575
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"
2574
2576
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"
2575
2577
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"
BooleanArray.prototype.map,"\nBooleanArray.prototype.map( clbk:Function[, thisArg:Any] )\n Returns a new array with each element being the result of a provided\n callback function.\n"
2579
2581
BooleanArray.prototype.reverse,"\nBooleanArray.prototype.reverse()\n Reverses the array *in-place*.\n"
2580
2582
BooleanArray.prototype.set,"\nBooleanArray.prototype.set( v:bool|BooleanArray|ArrayLikeObject[, i:integer] )\n Sets one or more array elements.\n"
2583
+
BooleanArray.prototype.some,"\nBooleanArray.prototype.some( predicate[, thisArg] )\n Returns a boolean indicating whether at least one element passes a test.\n"
2581
2584
BooleanArray.prototype.sort,"\nBooleanArray.prototype.sort( [compareFunction:Function] )\n Sorts an array in-place.\n"
2582
2585
BooleanArray.prototype.toReversed,"\nBooleanArray.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
2583
2586
BooleanArray.prototype.toSorted,"\nBooleanArray.prototype.toSorted( [compareFunction:Function] )\n Returns a new typed array containing the elements in sorted order.\n"
0 commit comments