@@ -1094,7 +1094,7 @@ interface ReadonlyArray<T> {
10941094 /**
10951095 * Returns a section of an array.
10961096 * @param start The beginning of the specified portion of the array.
1097- * @param end The end of the specified portion of the array.
1097+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
10981098 */
10991099 slice ( start ?: number , end ?: number ) : T [ ] ;
11001100 /**
@@ -1230,7 +1230,7 @@ interface Array<T> {
12301230 /**
12311231 * Returns a section of an array.
12321232 * @param start The beginning of the specified portion of the array.
1233- * @param end The end of the specified portion of the array.
1233+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
12341234 */
12351235 slice ( start ?: number , end ?: number ) : T [ ] ;
12361236 /**
@@ -1860,7 +1860,7 @@ interface Int8Array {
18601860 /**
18611861 * Returns a section of an array.
18621862 * @param start The beginning of the specified portion of the array.
1863- * @param end The end of the specified portion of the array.
1863+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
18641864 */
18651865 slice ( start ?: number , end ?: number ) : Int8Array ;
18661866
@@ -1887,7 +1887,7 @@ interface Int8Array {
18871887 * @param begin The index of the beginning of the array.
18881888 * @param end The index of the end of the array.
18891889 */
1890- subarray ( begin : number , end ?: number ) : Int8Array ;
1890+ subarray ( begin ? : number , end ?: number ) : Int8Array ;
18911891
18921892 /**
18931893 * Converts a number to a string by using the current locale.
@@ -2135,7 +2135,7 @@ interface Uint8Array {
21352135 /**
21362136 * Returns a section of an array.
21372137 * @param start The beginning of the specified portion of the array.
2138- * @param end The end of the specified portion of the array.
2138+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
21392139 */
21402140 slice ( start ?: number , end ?: number ) : Uint8Array ;
21412141
@@ -2162,7 +2162,7 @@ interface Uint8Array {
21622162 * @param begin The index of the beginning of the array.
21632163 * @param end The index of the end of the array.
21642164 */
2165- subarray ( begin : number , end ?: number ) : Uint8Array ;
2165+ subarray ( begin ? : number , end ?: number ) : Uint8Array ;
21662166
21672167 /**
21682168 * Converts a number to a string by using the current locale.
@@ -2410,7 +2410,7 @@ interface Uint8ClampedArray {
24102410 /**
24112411 * Returns a section of an array.
24122412 * @param start The beginning of the specified portion of the array.
2413- * @param end The end of the specified portion of the array.
2413+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
24142414 */
24152415 slice ( start ?: number , end ?: number ) : Uint8ClampedArray ;
24162416
@@ -2437,7 +2437,7 @@ interface Uint8ClampedArray {
24372437 * @param begin The index of the beginning of the array.
24382438 * @param end The index of the end of the array.
24392439 */
2440- subarray ( begin : number , end ?: number ) : Uint8ClampedArray ;
2440+ subarray ( begin ? : number , end ?: number ) : Uint8ClampedArray ;
24412441
24422442 /**
24432443 * Converts a number to a string by using the current locale.
@@ -2683,7 +2683,7 @@ interface Int16Array {
26832683 /**
26842684 * Returns a section of an array.
26852685 * @param start The beginning of the specified portion of the array.
2686- * @param end The end of the specified portion of the array.
2686+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
26872687 */
26882688 slice ( start ?: number , end ?: number ) : Int16Array ;
26892689
@@ -2710,7 +2710,7 @@ interface Int16Array {
27102710 * @param begin The index of the beginning of the array.
27112711 * @param end The index of the end of the array.
27122712 */
2713- subarray ( begin : number , end ?: number ) : Int16Array ;
2713+ subarray ( begin ? : number , end ?: number ) : Int16Array ;
27142714
27152715 /**
27162716 * Converts a number to a string by using the current locale.
@@ -2959,7 +2959,7 @@ interface Uint16Array {
29592959 /**
29602960 * Returns a section of an array.
29612961 * @param start The beginning of the specified portion of the array.
2962- * @param end The end of the specified portion of the array.
2962+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
29632963 */
29642964 slice ( start ?: number , end ?: number ) : Uint16Array ;
29652965
@@ -2986,7 +2986,7 @@ interface Uint16Array {
29862986 * @param begin The index of the beginning of the array.
29872987 * @param end The index of the end of the array.
29882988 */
2989- subarray ( begin : number , end ?: number ) : Uint16Array ;
2989+ subarray ( begin ? : number , end ?: number ) : Uint16Array ;
29902990
29912991 /**
29922992 * Converts a number to a string by using the current locale.
@@ -3234,7 +3234,7 @@ interface Int32Array {
32343234 /**
32353235 * Returns a section of an array.
32363236 * @param start The beginning of the specified portion of the array.
3237- * @param end The end of the specified portion of the array.
3237+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
32383238 */
32393239 slice ( start ?: number , end ?: number ) : Int32Array ;
32403240
@@ -3261,7 +3261,7 @@ interface Int32Array {
32613261 * @param begin The index of the beginning of the array.
32623262 * @param end The index of the end of the array.
32633263 */
3264- subarray ( begin : number , end ?: number ) : Int32Array ;
3264+ subarray ( begin ? : number , end ?: number ) : Int32Array ;
32653265
32663266 /**
32673267 * Converts a number to a string by using the current locale.
@@ -3508,7 +3508,7 @@ interface Uint32Array {
35083508 /**
35093509 * Returns a section of an array.
35103510 * @param start The beginning of the specified portion of the array.
3511- * @param end The end of the specified portion of the array.
3511+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
35123512 */
35133513 slice ( start ?: number , end ?: number ) : Uint32Array ;
35143514
@@ -3535,7 +3535,7 @@ interface Uint32Array {
35353535 * @param begin The index of the beginning of the array.
35363536 * @param end The index of the end of the array.
35373537 */
3538- subarray ( begin : number , end ?: number ) : Uint32Array ;
3538+ subarray ( begin ? : number , end ?: number ) : Uint32Array ;
35393539
35403540 /**
35413541 * Converts a number to a string by using the current locale.
@@ -3783,7 +3783,7 @@ interface Float32Array {
37833783 /**
37843784 * Returns a section of an array.
37853785 * @param start The beginning of the specified portion of the array.
3786- * @param end The end of the specified portion of the array.
3786+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
37873787 */
37883788 slice ( start ?: number , end ?: number ) : Float32Array ;
37893789
@@ -3810,7 +3810,7 @@ interface Float32Array {
38103810 * @param begin The index of the beginning of the array.
38113811 * @param end The index of the end of the array.
38123812 */
3813- subarray ( begin : number , end ?: number ) : Float32Array ;
3813+ subarray ( begin ? : number , end ?: number ) : Float32Array ;
38143814
38153815 /**
38163816 * Converts a number to a string by using the current locale.
@@ -4059,7 +4059,7 @@ interface Float64Array {
40594059 /**
40604060 * Returns a section of an array.
40614061 * @param start The beginning of the specified portion of the array.
4062- * @param end The end of the specified portion of the array.
4062+ * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
40634063 */
40644064 slice ( start ?: number , end ?: number ) : Float64Array ;
40654065
@@ -4081,21 +4081,12 @@ interface Float64Array {
40814081 sort ( compareFn ?: ( a : number , b : number ) => number ) : this;
40824082
40834083 /**
4084- * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
40854084 * at begin, inclusive, up to end, exclusive.
40864085 * @param begin The index of the beginning of the array.
40874086 * @param end The index of the end of the array.
40884087 */
4089- subarray ( begin : number , end ?: number ) : Float64Array ;
4088+ subarray ( begin ? : number , end ?: number ) : Float64Array ;
40904089
4091- /**
4092- * Converts a number to a string by using the current locale.
4093- */
4094- toLocaleString ( ) : string ;
4095-
4096- /**
4097- * Returns a string representation of an array.
4098- */
40994090 toString ( ) : string ;
41004091
41014092 [ index : number ] : number ;
0 commit comments