@@ -387,7 +387,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
387
387
* var bool = arr.every( predicate );
388
388
* // returns true
389
389
*/
390
- every < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : boolean ;
390
+ every < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : boolean ;
391
391
392
392
/**
393
393
* Returns a new array containing the elements of an array which pass a test implemented by a predicate function.
@@ -425,7 +425,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
425
425
* var im = imagf( z );
426
426
* // returns 2.0
427
427
*/
428
- filter < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64Array ;
428
+ filter < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64Array ;
429
429
430
430
/**
431
431
* Returns the first element in an array for which a predicate function returns a truthy value.
@@ -458,7 +458,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
458
458
* var im = imagf( z );
459
459
* // returns 1.0
460
460
*/
461
- find < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64 | void ;
461
+ find < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64 | void ;
462
462
463
463
/**
464
464
* Returns the index of the first element in an array for which a predicate function returns a truthy value.
@@ -485,7 +485,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
485
485
* var idx = arr.findIndex( predicate );
486
486
* // returns 2
487
487
*/
488
- findIndex < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : number ;
488
+ findIndex < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : number ;
489
489
490
490
/**
491
491
* Returns the last element in an array for which a predicate function returns a truthy value.
@@ -518,7 +518,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
518
518
* var im = imagf( z );
519
519
* // returns 3.0
520
520
*/
521
- findLast < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64 | void ;
521
+ findLast < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : Complex64 | void ;
522
522
523
523
/**
524
524
* Returns the index of the last element in an array for which a predicate function returns a truthy value.
@@ -545,7 +545,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
545
545
* var idx = arr.findLastIndex( predicate );
546
546
* // returns 1
547
547
*/
548
- findLastIndex < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : number ;
548
+ findLastIndex < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : number ;
549
549
550
550
/**
551
551
* Invokes a function once for each array element.
@@ -572,7 +572,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
572
572
* // => 1: 2 + 2i
573
573
* // => 2: 3 + 3i
574
574
*/
575
- forEach < U = unknown > ( fcn : Callback , thisArg ?: ThisParameterType < Callback < U > > ) : void ;
575
+ forEach < U = unknown > ( fcn : Callback < U > , thisArg ?: ThisParameterType < Callback < U > > ) : void ;
576
576
577
577
/**
578
578
* Returns an array element.
@@ -760,7 +760,7 @@ declare class Complex64Array implements Complex64ArrayInterface {
760
760
* var bool = arr.some( predicate );
761
761
* // returns true
762
762
*/
763
- some < U = unknown > ( predicate : Predicate , thisArg ?: ThisParameterType < Predicate < U > > ) : boolean ;
763
+ some < U = unknown > ( predicate : Predicate < U > , thisArg ?: ThisParameterType < Predicate < U > > ) : boolean ;
764
764
765
765
/**
766
766
* Creates a new typed array view over the same underlying `ArrayBuffer` and with the same underlying data type as the host array.
0 commit comments