@@ -262,8 +262,8 @@ var arr = Float64Array.from( [ 1.0, -1.0 ], mapFcn );
262
262
263
263
A callback function is provided two arguments:
264
264
265
- - ` value ` : source value
266
- - ` index ` : source index
265
+ - ` value ` : source value.
266
+ - ` index ` : source index.
267
267
268
268
To set the callback execution context, provide a ` thisArg ` .
269
269
@@ -396,9 +396,9 @@ var bool = arr.every( predicate );
396
396
397
397
A ` predicate ` function is provided three arguments:
398
398
399
- - ` value ` : array element
400
- - ` index ` : array index
401
- - ` arr ` : array on which the method is invoked
399
+ - ` value ` : array element.
400
+ - ` index ` : array index.
401
+ - ` arr ` : array on which the method is invoked.
402
402
403
403
To set the callback execution context, provide a ` thisArg ` .
404
404
@@ -515,9 +515,9 @@ var arr2 = arr1.filter( predicate );
515
515
516
516
A ` predicate ` function is provided three arguments:
517
517
518
- - ` value ` : array element
519
- - ` index ` : array index
520
- - ` arr ` : array on which the method is invoked
518
+ - ` value ` : array element.
519
+ - ` index ` : array index.
520
+ - ` arr ` : array on which the method is invoked.
521
521
522
522
To set the callback execution context, provide a ` thisArg ` .
523
523
@@ -577,9 +577,9 @@ var v = arr.find( predicate );
577
577
578
578
A ` predicate ` function is provided three arguments:
579
579
580
- - ` value ` : array element
581
- - ` index ` : array index
582
- - ` arr ` : array on which the method is invoked
580
+ - ` value ` : array element.
581
+ - ` index ` : array index.
582
+ - ` arr ` : array on which the method is invoked.
583
583
584
584
To set the callback execution context, provide a ` thisArg ` .
585
585
@@ -640,9 +640,9 @@ var idx = arr.findIndex( predicate );
640
640
641
641
A ` predicate ` function is provided three arguments:
642
642
643
- - ` value ` : array element
644
- - ` index ` : array index
645
- - ` arr ` : array on which the method is invoked
643
+ - ` value ` : array element.
644
+ - ` index ` : array index.
645
+ - ` arr ` : array on which the method is invoked.
646
646
647
647
To set the callback execution context, provide a ` thisArg ` .
648
648
@@ -695,9 +695,9 @@ console.log( str );
695
695
696
696
The callback is provided three arguments:
697
697
698
- - ` value ` : array element
699
- - ` index ` : array index
700
- - ` arr ` : array on which the method is invoked
698
+ - ` value ` : array element.
699
+ - ` index ` : array index.
700
+ - ` arr ` : array on which the method is invoked.
701
701
702
702
To set the callback execution context, provide a ` thisArg ` .
703
703
@@ -918,9 +918,9 @@ var arr2 = arr1.map( fcn );
918
918
919
919
A callback is provided three arguments:
920
920
921
- - ` value ` : array element
922
- - ` index ` : array index
923
- - ` arr ` : array on which the method is invoked
921
+ - ` value ` : array element.
922
+ - ` index ` : array index.
923
+ - ` arr ` : array on which the method is invoked.
924
924
925
925
To set the callback execution context, provide a ` thisArg ` .
926
926
@@ -982,10 +982,10 @@ var v = arr.reduce( fcn, 0.0 );
982
982
983
983
A callback is provided four arguments:
984
984
985
- - ` acc ` : accumulated result
986
- - ` value ` : array element
987
- - ` index ` : array index
988
- - ` arr ` : array on which the method is invoked
985
+ - ` acc ` : accumulated result.
986
+ - ` value ` : array element.
987
+ - ` index ` : array index.
988
+ - ` arr ` : array on which the method is invoked.
989
989
990
990
<a name =" method-reduce-right " ></a >
991
991
@@ -1025,10 +1025,10 @@ var v = arr.reduce( fcn, 0.0 );
1025
1025
1026
1026
A callback is provided four arguments:
1027
1027
1028
- - ` acc ` : accumulated result
1029
- - ` value ` : array element
1030
- - ` index ` : array index
1031
- - ` arr ` : array on which the method is invoked
1028
+ - ` acc ` : accumulated result.
1029
+ - ` value ` : array element.
1030
+ - ` index ` : array index.
1031
+ - ` arr ` : array on which the method is invoked.
1032
1032
1033
1033
<a name =" method-reverse " ></a >
1034
1034
@@ -1201,9 +1201,9 @@ var bool = arr.some( predicate );
1201
1201
1202
1202
A ` predicate ` function is provided three arguments:
1203
1203
1204
- - ` value ` : array element
1205
- - ` index ` : array index
1206
- - ` arr ` : array on which the method is invoked
1204
+ - ` value ` : array element.
1205
+ - ` index ` : array index.
1206
+ - ` arr ` : array on which the method is invoked.
1207
1207
1208
1208
To set the callback execution context, provide a ` thisArg ` .
1209
1209
@@ -1504,7 +1504,7 @@ See [LICENSE][stdlib-license].
1504
1504
1505
1505
## Copyright
1506
1506
1507
- Copyright © ; 2016-2024 . The Stdlib [ Authors] [ stdlib-authors ] .
1507
+ Copyright © ; 2016-2025 . The Stdlib [ Authors] [ stdlib-authors ] .
1508
1508
1509
1509
</section >
1510
1510
0 commit comments