@@ -262,8 +262,8 @@ var arr = Int8Array.from( [ 1, 2 ], mapFcn );
262262
263263A callback function is provided two arguments:
264264
265- - ` value ` : source value
266- - ` index ` : source index
265+ - ` value ` : source value.
266+ - ` index ` : source index.
267267
268268To set the callback execution context, provide a ` thisArg ` .
269269
@@ -396,9 +396,9 @@ var bool = arr.every( predicate );
396396
397397A ` predicate ` function is provided three arguments:
398398
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.
402402
403403To set the callback execution context, provide a ` thisArg ` .
404404
@@ -515,9 +515,9 @@ var arr2 = arr1.filter( predicate );
515515
516516A ` predicate ` function is provided three arguments:
517517
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.
521521
522522To set the callback execution context, provide a ` thisArg ` .
523523
@@ -577,9 +577,9 @@ var v = arr.find( predicate );
577577
578578A ` predicate ` function is provided three arguments:
579579
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.
583583
584584To set the callback execution context, provide a ` thisArg ` .
585585
@@ -640,9 +640,9 @@ var idx = arr.findIndex( predicate );
640640
641641A ` predicate ` function is provided three arguments:
642642
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.
646646
647647To set the callback execution context, provide a ` thisArg ` .
648648
@@ -695,9 +695,9 @@ console.log( str );
695695
696696The callback is provided three arguments:
697697
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.
701701
702702To set the callback execution context, provide a ` thisArg ` .
703703
@@ -912,9 +912,9 @@ var arr2 = arr1.map( fcn );
912912
913913A callback is provided three arguments:
914914
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.
918918
919919To set the callback execution context, provide a ` thisArg ` .
920920
@@ -976,10 +976,10 @@ var v = arr.reduce( fcn, 0 );
976976
977977A callback is provided four arguments:
978978
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.
983983
984984<a name =" method-reduce-right " ></a >
985985
@@ -1019,10 +1019,10 @@ var v = arr.reduce( fcn, 0 );
10191019
10201020A callback is provided four arguments:
10211021
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.
10261026
10271027<a name =" method-reverse " ></a >
10281028
@@ -1195,9 +1195,9 @@ var bool = arr.some( predicate );
11951195
11961196A ` predicate ` function is provided three arguments:
11971197
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.
12011201
12021202To set the callback execution context, provide a ` thisArg ` .
12031203
@@ -1499,7 +1499,7 @@ See [LICENSE][stdlib-license].
14991499
15001500## Copyright
15011501
1502- Copyright © ; 2016-2024 . The Stdlib [ Authors] [ stdlib-authors ] .
1502+ Copyright © ; 2016-2025 . The Stdlib [ Authors] [ stdlib-authors ] .
15031503
15041504</section >
15051505
0 commit comments