@@ -89,13 +89,13 @@ interface BigInt64Array {
89
89
90
90
/**
91
91
* Determines whether all the members of an array satisfy the specified test.
92
- * @param callbackfn A function that accepts up to three arguments. The every method calls
93
- * the callbackfn function for each element in the array until the callbackfn returns false,
92
+ * @param predicate A function that accepts up to three arguments. The every method calls
93
+ * the predicate function for each element in the array until the predicate returns false,
94
94
* or until the end of the array.
95
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
95
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
96
96
* If thisArg is omitted, undefined is used as the this value.
97
97
*/
98
- every ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
98
+ every ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
99
99
100
100
/**
101
101
* Returns the this object after filling the section identified by start and end with value
@@ -109,12 +109,12 @@ interface BigInt64Array {
109
109
110
110
/**
111
111
* Returns the elements of an array that meet the condition specified in a callback function.
112
- * @param callbackfn A function that accepts up to three arguments. The filter method calls
113
- * the callbackfn function one time for each element in the array.
114
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
112
+ * @param predicate A function that accepts up to three arguments. The filter method calls
113
+ * the predicate function one time for each element in the array.
114
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
115
115
* If thisArg is omitted, undefined is used as the this value.
116
116
*/
117
- filter ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => any , thisArg ?: any ) : BigInt64Array ;
117
+ filter ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => any , thisArg ?: any ) : BigInt64Array ;
118
118
119
119
/**
120
120
* Returns the value of the first element in the array where predicate is true, and undefined
@@ -260,13 +260,13 @@ interface BigInt64Array {
260
260
261
261
/**
262
262
* Determines whether the specified callback function returns true for any element of an array.
263
- * @param callbackfn A function that accepts up to three arguments. The some method calls the
264
- * callbackfn function for each element in the array until the callbackfn returns true, or until
263
+ * @param predicate A function that accepts up to three arguments. The some method calls the
264
+ * predicate function for each element in the array until the predicate returns true, or until
265
265
* the end of the array.
266
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
266
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
267
267
* If thisArg is omitted, undefined is used as the this value.
268
268
*/
269
- some ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
269
+ some ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
270
270
271
271
/**
272
272
* Sorts the array.
@@ -361,13 +361,13 @@ interface BigUint64Array {
361
361
362
362
/**
363
363
* Determines whether all the members of an array satisfy the specified test.
364
- * @param callbackfn A function that accepts up to three arguments. The every method calls
365
- * the callbackfn function for each element in the array until the callbackfn returns false,
364
+ * @param predicate A function that accepts up to three arguments. The every method calls
365
+ * the predicate function for each element in the array until the predicate returns false,
366
366
* or until the end of the array.
367
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
367
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
368
368
* If thisArg is omitted, undefined is used as the this value.
369
369
*/
370
- every ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
370
+ every ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
371
371
372
372
/**
373
373
* Returns the this object after filling the section identified by start and end with value
@@ -381,12 +381,12 @@ interface BigUint64Array {
381
381
382
382
/**
383
383
* Returns the elements of an array that meet the condition specified in a callback function.
384
- * @param callbackfn A function that accepts up to three arguments. The filter method calls
385
- * the callbackfn function one time for each element in the array.
386
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
384
+ * @param predicate A function that accepts up to three arguments. The filter method calls
385
+ * the predicate function one time for each element in the array.
386
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
387
387
* If thisArg is omitted, undefined is used as the this value.
388
388
*/
389
- filter ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => any , thisArg ?: any ) : BigUint64Array ;
389
+ filter ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => any , thisArg ?: any ) : BigUint64Array ;
390
390
391
391
/**
392
392
* Returns the value of the first element in the array where predicate is true, and undefined
@@ -532,13 +532,13 @@ interface BigUint64Array {
532
532
533
533
/**
534
534
* Determines whether the specified callback function returns true for any element of an array.
535
- * @param callbackfn A function that accepts up to three arguments. The some method calls the
536
- * callbackfn function for each element in the array until the callbackfn returns true, or until
535
+ * @param predicate A function that accepts up to three arguments. The some method calls the
536
+ * predicate function for each element in the array until the predicate returns true, or until
537
537
* the end of the array.
538
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
538
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
539
539
* If thisArg is omitted, undefined is used as the this value.
540
540
*/
541
- some ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
541
+ some ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
542
542
543
543
/**
544
544
* Sorts the array.
0 commit comments