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
Complex64Array.prototype.BYTES_PER_ELEMENT,"\nComplex64Array.prototype.BYTES_PER_ELEMENT\n Size (in bytes) of each array element.\n"
2675
2675
Complex64Array.prototype.length,"\nComplex64Array.prototype.length\n The number of array elements.\n"
2676
2676
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"
2678
2678
Complex64Array.prototype.entries,"\nComplex64Array.prototype.entries()\n Returns an iterator for iterating over array key-value pairs.\n"
2679
2679
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"
2680
2680
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
2696
2696
Complex64Array.prototype.reverse,"\nComplex64Array.prototype.reverse()\n Reverses the array *in-place*.\n"
2697
2697
Complex64Array.prototype.set,"\nComplex64Array.prototype.set( z:Complex64|Complex64Array|ArrayLikeObject[, \n i:integer] )\n Sets one or more array elements.\n"
2698
2698
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"
2700
2700
Complex64Array.prototype.sort,"\nComplex64Array.prototype.sort( compareFunction:Function )\n Sorts an array in-place.\n"
2701
2701
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"
2703
2703
Complex64Array.prototype.toReversed,"\nComplex64Array.prototype.toReversed()\n Returns a new typed array containing the elements in reversed order.\n"
2704
2704
Complex64Array.prototype.toSorted,"\nComplex64Array.prototype.toSorted( compareFcn:Function )\n Returns a new typed array containing the elements in sorted order.\n"
2705
2705
Complex64Array.prototype.toString,"\nComplex64Array.prototype.toString()\n Serializes an array as a string.\n"
2706
2706
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"
2708
2708
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"
2709
2709
Complex128,"\nComplex128( real:number, imag:number )\n 128-bit complex number constructor.\n"
0 commit comments