@@ -1094,7 +1094,7 @@ interface ReadonlyArray<T> {
1094
1094
/**
1095
1095
* Returns a section of an array.
1096
1096
* @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'.
1098
1098
*/
1099
1099
slice ( start ?: number , end ?: number ) : T [ ] ;
1100
1100
/**
@@ -1230,7 +1230,7 @@ interface Array<T> {
1230
1230
/**
1231
1231
* Returns a section of an array.
1232
1232
* @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'.
1234
1234
*/
1235
1235
slice ( start ?: number , end ?: number ) : T [ ] ;
1236
1236
/**
@@ -1860,7 +1860,7 @@ interface Int8Array {
1860
1860
/**
1861
1861
* Returns a section of an array.
1862
1862
* @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'.
1864
1864
*/
1865
1865
slice ( start ?: number , end ?: number ) : Int8Array ;
1866
1866
@@ -1887,7 +1887,7 @@ interface Int8Array {
1887
1887
* @param begin The index of the beginning of the array.
1888
1888
* @param end The index of the end of the array.
1889
1889
*/
1890
- subarray ( begin : number , end ?: number ) : Int8Array ;
1890
+ subarray ( begin ? : number , end ?: number ) : Int8Array ;
1891
1891
1892
1892
/**
1893
1893
* Converts a number to a string by using the current locale.
@@ -2135,7 +2135,7 @@ interface Uint8Array {
2135
2135
/**
2136
2136
* Returns a section of an array.
2137
2137
* @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'.
2139
2139
*/
2140
2140
slice ( start ?: number , end ?: number ) : Uint8Array ;
2141
2141
@@ -2162,7 +2162,7 @@ interface Uint8Array {
2162
2162
* @param begin The index of the beginning of the array.
2163
2163
* @param end The index of the end of the array.
2164
2164
*/
2165
- subarray ( begin : number , end ?: number ) : Uint8Array ;
2165
+ subarray ( begin ? : number , end ?: number ) : Uint8Array ;
2166
2166
2167
2167
/**
2168
2168
* Converts a number to a string by using the current locale.
@@ -2410,7 +2410,7 @@ interface Uint8ClampedArray {
2410
2410
/**
2411
2411
* Returns a section of an array.
2412
2412
* @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'.
2414
2414
*/
2415
2415
slice ( start ?: number , end ?: number ) : Uint8ClampedArray ;
2416
2416
@@ -2437,7 +2437,7 @@ interface Uint8ClampedArray {
2437
2437
* @param begin The index of the beginning of the array.
2438
2438
* @param end The index of the end of the array.
2439
2439
*/
2440
- subarray ( begin : number , end ?: number ) : Uint8ClampedArray ;
2440
+ subarray ( begin ? : number , end ?: number ) : Uint8ClampedArray ;
2441
2441
2442
2442
/**
2443
2443
* Converts a number to a string by using the current locale.
@@ -2683,7 +2683,7 @@ interface Int16Array {
2683
2683
/**
2684
2684
* Returns a section of an array.
2685
2685
* @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'.
2687
2687
*/
2688
2688
slice ( start ?: number , end ?: number ) : Int16Array ;
2689
2689
@@ -2710,7 +2710,7 @@ interface Int16Array {
2710
2710
* @param begin The index of the beginning of the array.
2711
2711
* @param end The index of the end of the array.
2712
2712
*/
2713
- subarray ( begin : number , end ?: number ) : Int16Array ;
2713
+ subarray ( begin ? : number , end ?: number ) : Int16Array ;
2714
2714
2715
2715
/**
2716
2716
* Converts a number to a string by using the current locale.
@@ -2959,7 +2959,7 @@ interface Uint16Array {
2959
2959
/**
2960
2960
* Returns a section of an array.
2961
2961
* @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'.
2963
2963
*/
2964
2964
slice ( start ?: number , end ?: number ) : Uint16Array ;
2965
2965
@@ -2986,7 +2986,7 @@ interface Uint16Array {
2986
2986
* @param begin The index of the beginning of the array.
2987
2987
* @param end The index of the end of the array.
2988
2988
*/
2989
- subarray ( begin : number , end ?: number ) : Uint16Array ;
2989
+ subarray ( begin ? : number , end ?: number ) : Uint16Array ;
2990
2990
2991
2991
/**
2992
2992
* Converts a number to a string by using the current locale.
@@ -3234,7 +3234,7 @@ interface Int32Array {
3234
3234
/**
3235
3235
* Returns a section of an array.
3236
3236
* @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'.
3238
3238
*/
3239
3239
slice ( start ?: number , end ?: number ) : Int32Array ;
3240
3240
@@ -3261,7 +3261,7 @@ interface Int32Array {
3261
3261
* @param begin The index of the beginning of the array.
3262
3262
* @param end The index of the end of the array.
3263
3263
*/
3264
- subarray ( begin : number , end ?: number ) : Int32Array ;
3264
+ subarray ( begin ? : number , end ?: number ) : Int32Array ;
3265
3265
3266
3266
/**
3267
3267
* Converts a number to a string by using the current locale.
@@ -3508,7 +3508,7 @@ interface Uint32Array {
3508
3508
/**
3509
3509
* Returns a section of an array.
3510
3510
* @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'.
3512
3512
*/
3513
3513
slice ( start ?: number , end ?: number ) : Uint32Array ;
3514
3514
@@ -3535,7 +3535,7 @@ interface Uint32Array {
3535
3535
* @param begin The index of the beginning of the array.
3536
3536
* @param end The index of the end of the array.
3537
3537
*/
3538
- subarray ( begin : number , end ?: number ) : Uint32Array ;
3538
+ subarray ( begin ? : number , end ?: number ) : Uint32Array ;
3539
3539
3540
3540
/**
3541
3541
* Converts a number to a string by using the current locale.
@@ -3783,7 +3783,7 @@ interface Float32Array {
3783
3783
/**
3784
3784
* Returns a section of an array.
3785
3785
* @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'.
3787
3787
*/
3788
3788
slice ( start ?: number , end ?: number ) : Float32Array ;
3789
3789
@@ -3810,7 +3810,7 @@ interface Float32Array {
3810
3810
* @param begin The index of the beginning of the array.
3811
3811
* @param end The index of the end of the array.
3812
3812
*/
3813
- subarray ( begin : number , end ?: number ) : Float32Array ;
3813
+ subarray ( begin ? : number , end ?: number ) : Float32Array ;
3814
3814
3815
3815
/**
3816
3816
* Converts a number to a string by using the current locale.
@@ -4059,7 +4059,7 @@ interface Float64Array {
4059
4059
/**
4060
4060
* Returns a section of an array.
4061
4061
* @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'.
4063
4063
*/
4064
4064
slice ( start ?: number , end ?: number ) : Float64Array ;
4065
4065
@@ -4081,21 +4081,12 @@ interface Float64Array {
4081
4081
sort ( compareFn ?: ( a : number , b : number ) => number ) : this;
4082
4082
4083
4083
/**
4084
- * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
4085
4084
* at begin, inclusive, up to end, exclusive.
4086
4085
* @param begin The index of the beginning of the array.
4087
4086
* @param end The index of the end of the array.
4088
4087
*/
4089
- subarray ( begin : number , end ?: number ) : Float64Array ;
4088
+ subarray ( begin ? : number , end ?: number ) : Float64Array ;
4090
4089
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
- */
4099
4090
toString ( ) : string ;
4100
4091
4101
4092
[ index : number ] : number ;
0 commit comments