@@ -69,13 +69,13 @@ interface BigInt64Array {
69
69
70
70
/**
71
71
* Determines whether all the members of an array satisfy the specified test.
72
- * @param callbackfn A function that accepts up to three arguments. The every method calls
73
- * the callbackfn function for each element in the array until the callbackfn returns false,
72
+ * @param predicate A function that accepts up to three arguments. The every method calls
73
+ * the predicate function for each element in the array until the predicate returns false,
74
74
* or until the end of the array.
75
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
75
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
76
76
* If thisArg is omitted, undefined is used as the this value.
77
77
*/
78
- every ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
78
+ every ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
79
79
80
80
/**
81
81
* Returns the this object after filling the section identified by start and end with value
@@ -89,12 +89,12 @@ interface BigInt64Array {
89
89
90
90
/**
91
91
* Returns the elements of an array that meet the condition specified in a callback function.
92
- * @param callbackfn A function that accepts up to three arguments. The filter method calls
93
- * the callbackfn function one time for each element in the array.
94
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
92
+ * @param predicate A function that accepts up to three arguments. The filter method calls
93
+ * the predicate function one time for each element in the array.
94
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
95
95
* If thisArg is omitted, undefined is used as the this value.
96
96
*/
97
- filter ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => any , thisArg ?: any ) : BigInt64Array ;
97
+ filter ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => any , thisArg ?: any ) : BigInt64Array ;
98
98
99
99
/**
100
100
* Returns the value of the first element in the array where predicate is true, and undefined
@@ -240,13 +240,13 @@ interface BigInt64Array {
240
240
241
241
/**
242
242
* Determines whether the specified callback function returns true for any element of an array.
243
- * @param callbackfn A function that accepts up to three arguments. The some method calls the
244
- * callbackfn function for each element in the array until the callbackfn returns true, or until
243
+ * @param predicate A function that accepts up to three arguments. The some method calls the
244
+ * predicate function for each element in the array until the predicate returns true, or until
245
245
* the end of the array.
246
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
246
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
247
247
* If thisArg is omitted, undefined is used as the this value.
248
248
*/
249
- some ( callbackfn : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
249
+ some ( predicate : ( value : bigint , index : number , array : BigInt64Array ) => boolean , thisArg ?: any ) : boolean ;
250
250
251
251
/**
252
252
* Sorts the array.
@@ -341,13 +341,13 @@ interface BigUint64Array {
341
341
342
342
/**
343
343
* Determines whether all the members of an array satisfy the specified test.
344
- * @param callbackfn A function that accepts up to three arguments. The every method calls
345
- * the callbackfn function for each element in the array until the callbackfn returns false,
344
+ * @param predicate A function that accepts up to three arguments. The every method calls
345
+ * the predicate function for each element in the array until the predicate returns false,
346
346
* or until the end of the array.
347
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
347
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
348
348
* If thisArg is omitted, undefined is used as the this value.
349
349
*/
350
- every ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
350
+ every ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
351
351
352
352
/**
353
353
* Returns the this object after filling the section identified by start and end with value
@@ -361,12 +361,12 @@ interface BigUint64Array {
361
361
362
362
/**
363
363
* Returns the elements of an array that meet the condition specified in a callback function.
364
- * @param callbackfn A function that accepts up to three arguments. The filter method calls
365
- * the callbackfn function one time for each element in the array.
366
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
364
+ * @param predicate A function that accepts up to three arguments. The filter method calls
365
+ * the predicate function one time for each element in the array.
366
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
367
367
* If thisArg is omitted, undefined is used as the this value.
368
368
*/
369
- filter ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => any , thisArg ?: any ) : BigUint64Array ;
369
+ filter ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => any , thisArg ?: any ) : BigUint64Array ;
370
370
371
371
/**
372
372
* Returns the value of the first element in the array where predicate is true, and undefined
@@ -512,13 +512,13 @@ interface BigUint64Array {
512
512
513
513
/**
514
514
* Determines whether the specified callback function returns true for any element of an array.
515
- * @param callbackfn A function that accepts up to three arguments. The some method calls the
516
- * callbackfn function for each element in the array until the callbackfn returns true, or until
515
+ * @param predicate A function that accepts up to three arguments. The some method calls the
516
+ * predicate function for each element in the array until the predicate returns true, or until
517
517
* the end of the array.
518
- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
518
+ * @param thisArg An object to which the this keyword can refer in the predicate function.
519
519
* If thisArg is omitted, undefined is used as the this value.
520
520
*/
521
- some ( callbackfn : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
521
+ some ( predicate : ( value : bigint , index : number , array : BigUint64Array ) => boolean , thisArg ?: any ) : boolean ;
522
522
523
523
/**
524
524
* Sorts the array.
0 commit comments