@@ -262,8 +262,8 @@ var arr = Uint16Array.from( [ 1, 2 ], 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
@@ -912,9 +912,9 @@ var arr2 = arr1.map( fcn );
912
912
913
913
A callback is provided three arguments:
914
914
915
- - ` value ` : array element
916
- - ` index ` : array index
917
- - ` arr ` : array on which the method is invoked
915
+ - ` value ` : array element.
916
+ - ` index ` : array index.
917
+ - ` arr ` : array on which the method is invoked.
918
918
919
919
To set the callback execution context, provide a ` thisArg ` .
920
920
@@ -976,10 +976,10 @@ var v = arr.reduce( fcn, 0 );
976
976
977
977
A callback is provided four arguments:
978
978
979
- - ` acc ` : accumulated result
980
- - ` value ` : array element
981
- - ` index ` : array index
982
- - ` arr ` : array on which the method is invoked
979
+ - ` acc ` : accumulated result.
980
+ - ` value ` : array element.
981
+ - ` index ` : array index.
982
+ - ` arr ` : array on which the method is invoked.
983
983
984
984
<a name =" method-reduce-right " ></a >
985
985
@@ -1019,10 +1019,10 @@ var v = arr.reduce( fcn, 0 );
1019
1019
1020
1020
A callback is provided four arguments:
1021
1021
1022
- - ` acc ` : accumulated result
1023
- - ` value ` : array element
1024
- - ` index ` : array index
1025
- - ` arr ` : array on which the method is invoked
1022
+ - ` acc ` : accumulated result.
1023
+ - ` value ` : array element.
1024
+ - ` index ` : array index.
1025
+ - ` arr ` : array on which the method is invoked.
1026
1026
1027
1027
<a name =" method-reverse " ></a >
1028
1028
@@ -1195,9 +1195,9 @@ var bool = arr.some( predicate );
1195
1195
1196
1196
A ` predicate ` function is provided three arguments:
1197
1197
1198
- - ` value ` : array element
1199
- - ` index ` : array index
1200
- - ` arr ` : array on which the method is invoked
1198
+ - ` value ` : array element.
1199
+ - ` index ` : array index.
1200
+ - ` arr ` : array on which the method is invoked.
1201
1201
1202
1202
To set the callback execution context, provide a ` thisArg ` .
1203
1203
@@ -1499,7 +1499,7 @@ See [LICENSE][stdlib-license].
1499
1499
1500
1500
## Copyright
1501
1501
1502
- Copyright © ; 2016-2024 . The Stdlib [ Authors] [ stdlib-authors ] .
1502
+ Copyright © ; 2016-2025 . The Stdlib [ Authors] [ stdlib-authors ] .
1503
1503
1504
1504
</section >
1505
1505
0 commit comments