@@ -1776,7 +1776,7 @@ interface Int8Array {
1776
1776
every ( predicate : ( value : number , index : number , array : Int8Array ) => unknown , thisArg ?: any ) : boolean ;
1777
1777
1778
1778
/**
1779
- * Returns the this object after filling the section identified by start and end with value
1779
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
1780
1780
* @param value value to fill array section with
1781
1781
* @param start index to start filling the array at. If start is negative, it is treated as
1782
1782
* length+start where length is the length of the array.
@@ -2058,7 +2058,7 @@ interface Uint8Array {
2058
2058
every ( predicate : ( value : number , index : number , array : Uint8Array ) => unknown , thisArg ?: any ) : boolean ;
2059
2059
2060
2060
/**
2061
- * Returns the this object after filling the section identified by start and end with value
2061
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
2062
2062
* @param value value to fill array section with
2063
2063
* @param start index to start filling the array at. If start is negative, it is treated as
2064
2064
* length+start where length is the length of the array.
@@ -2340,7 +2340,7 @@ interface Uint8ClampedArray {
2340
2340
every ( predicate : ( value : number , index : number , array : Uint8ClampedArray ) => unknown , thisArg ?: any ) : boolean ;
2341
2341
2342
2342
/**
2343
- * Returns the this object after filling the section identified by start and end with value
2343
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
2344
2344
* @param value value to fill array section with
2345
2345
* @param start index to start filling the array at. If start is negative, it is treated as
2346
2346
* length+start where length is the length of the array.
@@ -2621,7 +2621,7 @@ interface Int16Array {
2621
2621
every ( predicate : ( value : number , index : number , array : Int16Array ) => unknown , thisArg ?: any ) : boolean ;
2622
2622
2623
2623
/**
2624
- * Returns the this object after filling the section identified by start and end with value
2624
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
2625
2625
* @param value value to fill array section with
2626
2626
* @param start index to start filling the array at. If start is negative, it is treated as
2627
2627
* length+start where length is the length of the array.
@@ -2903,7 +2903,7 @@ interface Uint16Array {
2903
2903
every ( predicate : ( value : number , index : number , array : Uint16Array ) => unknown , thisArg ?: any ) : boolean ;
2904
2904
2905
2905
/**
2906
- * Returns the this object after filling the section identified by start and end with value
2906
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
2907
2907
* @param value value to fill array section with
2908
2908
* @param start index to start filling the array at. If start is negative, it is treated as
2909
2909
* length+start where length is the length of the array.
@@ -3185,7 +3185,7 @@ interface Int32Array {
3185
3185
every ( predicate : ( value : number , index : number , array : Int32Array ) => unknown , thisArg ?: any ) : boolean ;
3186
3186
3187
3187
/**
3188
- * Returns the this object after filling the section identified by start and end with value
3188
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
3189
3189
* @param value value to fill array section with
3190
3190
* @param start index to start filling the array at. If start is negative, it is treated as
3191
3191
* length+start where length is the length of the array.
@@ -3467,7 +3467,7 @@ interface Uint32Array {
3467
3467
every ( predicate : ( value : number , index : number , array : Uint32Array ) => unknown , thisArg ?: any ) : boolean ;
3468
3468
3469
3469
/**
3470
- * Returns the this object after filling the section identified by start and end with value
3470
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
3471
3471
* @param value value to fill array section with
3472
3472
* @param start index to start filling the array at. If start is negative, it is treated as
3473
3473
* length+start where length is the length of the array.
@@ -3748,7 +3748,7 @@ interface Float32Array {
3748
3748
every ( predicate : ( value : number , index : number , array : Float32Array ) => unknown , thisArg ?: any ) : boolean ;
3749
3749
3750
3750
/**
3751
- * Returns the this object after filling the section identified by start and end with value
3751
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
3752
3752
* @param value value to fill array section with
3753
3753
* @param start index to start filling the array at. If start is negative, it is treated as
3754
3754
* length+start where length is the length of the array.
@@ -4031,7 +4031,7 @@ interface Float64Array {
4031
4031
every ( predicate : ( value : number , index : number , array : Float64Array ) => unknown , thisArg ?: any ) : boolean ;
4032
4032
4033
4033
/**
4034
- * Returns the this object after filling the section identified by start and end with value
4034
+ * Changes all array elements from `start` to `end` index to a static `value` and returns the modified array
4035
4035
* @param value value to fill array section with
4036
4036
* @param start index to start filling the array at. If start is negative, it is treated as
4037
4037
* length+start where length is the length of the array.
0 commit comments