@@ -262,8 +262,8 @@ var arr = Float64Array.from( [ 1.0, -1.0 ], 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
@@ -918,9 +918,9 @@ var arr2 = arr1.map( fcn );
918918
919919A callback is provided three arguments:
920920
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.
924924
925925To set the callback execution context, provide a ` thisArg ` .
926926
@@ -982,10 +982,10 @@ var v = arr.reduce( fcn, 0.0 );
982982
983983A callback is provided four arguments:
984984
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.
989989
990990<a name =" method-reduce-right " ></a >
991991
@@ -1025,10 +1025,10 @@ var v = arr.reduce( fcn, 0.0 );
10251025
10261026A callback is provided four arguments:
10271027
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.
10321032
10331033<a name =" method-reverse " ></a >
10341034
@@ -1201,9 +1201,9 @@ var bool = arr.some( predicate );
12011201
12021202A ` predicate ` function is provided three arguments:
12031203
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.
12071207
12081208To set the callback execution context, provide a ` thisArg ` .
12091209
@@ -1504,7 +1504,7 @@ See [LICENSE][stdlib-license].
15041504
15051505## Copyright
15061506
1507- Copyright © ; 2016-2024 . The Stdlib [ Authors] [ stdlib-authors ] .
1507+ Copyright © ; 2016-2025 . The Stdlib [ Authors] [ stdlib-authors ] .
15081508
15091509</section >
15101510
0 commit comments