@@ -390,9 +390,9 @@ y = tuple[ 1 ];
390390
391391A callback function is provided three arguments:
392392
393- - ` value ` : source value
394- - ` index ` : source index
395- - ` field ` : tuple field
393+ - ` value ` : source value.
394+ - ` index ` : source index.
395+ - ` field ` : tuple field.
396396
397397To set the callback execution context, provide a ` thisArg ` .
398398
@@ -474,8 +474,8 @@ y = tuple[ 1 ];
474474
475475A callback function is provided two arguments:
476476
477- - ` value ` : source object tuple field value
478- - ` field ` : source object tuple field name
477+ - ` value ` : source object tuple field value.
478+ - ` field ` : source object tuple field name.
479479
480480To set the callback execution context, provide a ` thisArg ` .
481481
@@ -797,10 +797,10 @@ var bool = tuple.every( predicate );
797797
798798A ` predicate ` function is provided four arguments:
799799
800- - ` value ` : tuple element
801- - ` index ` : tuple index
802- - ` field ` : tuple field name
803- - ` tuple ` : tuple on which the method is invoked
800+ - ` value ` : tuple element.
801+ - ` index ` : tuple index.
802+ - ` field ` : tuple field name.
803+ - ` tuple ` : tuple on which the method is invoked.
804804
805805To set the callback execution context, provide a ` thisArg ` .
806806
@@ -961,10 +961,10 @@ var p2 = p1.filter( predicate );
961961
962962A ` predicate ` function is provided four arguments:
963963
964- - ` value ` : tuple element
965- - ` index ` : tuple index
966- - ` field ` : tuple field name
967- - ` tuple ` : tuple on which the method is invoked
964+ - ` value ` : tuple element.
965+ - ` index ` : tuple index.
966+ - ` field ` : tuple field name.
967+ - ` tuple ` : tuple on which the method is invoked.
968968
969969To set the callback execution context, provide a ` thisArg ` .
970970
@@ -1024,10 +1024,10 @@ var v = tuple.find( predicate );
10241024
10251025A ` predicate ` function is provided four arguments:
10261026
1027- - ` value ` : tuple element
1028- - ` index ` : tuple index
1029- - ` field ` : tuple field name
1030- - ` tuple ` : tuple on which the method is invoked
1027+ - ` value ` : tuple element.
1028+ - ` index ` : tuple index.
1029+ - ` field ` : tuple field name.
1030+ - ` tuple ` : tuple on which the method is invoked.
10311031
10321032To set the callback execution context, provide a ` thisArg ` .
10331033
@@ -1088,10 +1088,10 @@ var field = tuple.findField( predicate );
10881088
10891089A ` predicate ` function is provided four arguments:
10901090
1091- - ` value ` : tuple element
1092- - ` index ` : tuple index
1093- - ` field ` : tuple field name
1094- - ` tuple ` : tuple on which the method is invoked
1091+ - ` value ` : tuple element.
1092+ - ` index ` : tuple index.
1093+ - ` field ` : tuple field name.
1094+ - ` tuple ` : tuple on which the method is invoked.
10951095
10961096To set the callback execution context, provide a ` thisArg ` .
10971097
@@ -1152,10 +1152,10 @@ var idx = tuple.findIndex( predicate );
11521152
11531153A ` predicate ` function is provided four arguments:
11541154
1155- - ` value ` : tuple element
1156- - ` index ` : tuple index
1157- - ` field ` : tuple field name
1158- - ` tuple ` : tuple on which the method is invoked
1155+ - ` value ` : tuple element.
1156+ - ` index ` : tuple index.
1157+ - ` field ` : tuple field name.
1158+ - ` tuple ` : tuple on which the method is invoked.
11591159
11601160To set the callback execution context, provide a ` thisArg ` .
11611161
@@ -1208,10 +1208,10 @@ console.log( str );
12081208
12091209The callback is provided four arguments:
12101210
1211- - ` value ` : tuple element
1212- - ` index ` : tuple index
1213- - ` field ` : tuple field name
1214- - ` tuple ` : tuple on which the method is invoked
1211+ - ` value ` : tuple element.
1212+ - ` index ` : tuple index.
1213+ - ` field ` : tuple field name.
1214+ - ` tuple ` : tuple on which the method is invoked.
12151215
12161216To set the callback execution context, provide a ` thisArg ` .
12171217
@@ -1529,10 +1529,10 @@ var z = p2.z;
15291529
15301530A callback is provided four arguments:
15311531
1532- - ` value ` : tuple element
1533- - ` index ` : tuple index
1534- - ` field ` : tuple field name
1535- - ` tuple ` : tuple on which the method is invoked
1532+ - ` value ` : tuple element.
1533+ - ` index ` : tuple index.
1534+ - ` field ` : tuple field name.
1535+ - ` tuple ` : tuple on which the method is invoked.
15361536
15371537To set the callback execution context, provide a ` thisArg ` .
15381538
@@ -1594,11 +1594,11 @@ var v = tuple.reduce( fcn, 0.0 );
15941594
15951595A callback is provided five arguments:
15961596
1597- - ` acc ` : accumulated result
1598- - ` value ` : tuple element
1599- - ` index ` : tuple index
1600- - ` field ` : tuple field name
1601- - ` tuple ` : tuple on which the method is invoked
1597+ - ` acc ` : accumulated result.
1598+ - ` value ` : tuple element.
1599+ - ` index ` : tuple index.
1600+ - ` field ` : tuple field name.
1601+ - ` tuple ` : tuple on which the method is invoked.
16021602
16031603<a name =" method-reduce-right " ></a >
16041604
@@ -1638,11 +1638,11 @@ var v = tuple.reduceRight( fcn, 0.0 );
16381638
16391639A callback is provided five arguments:
16401640
1641- - ` acc ` : accumulated result
1642- - ` value ` : tuple element
1643- - ` index ` : tuple index
1644- - ` field ` : tuple field name
1645- - ` tuple ` : tuple on which the method is invoked
1641+ - ` acc ` : accumulated result.
1642+ - ` value ` : tuple element.
1643+ - ` index ` : tuple index.
1644+ - ` field ` : tuple field name.
1645+ - ` tuple ` : tuple on which the method is invoked.
16461646
16471647<a name =" method-reverse " ></a >
16481648
@@ -1852,10 +1852,10 @@ var bool = tuple.some( predicate );
18521852
18531853A ` predicate ` function is provided four arguments:
18541854
1855- - ` value ` : tuple element
1856- - ` index ` : tuple index
1857- - ` field ` : tuple field name
1858- - ` tuple ` : tuple on which the method is invoked
1855+ - ` value ` : tuple element.
1856+ - ` index ` : tuple index.
1857+ - ` field ` : tuple field name.
1858+ - ` tuple ` : tuple on which the method is invoked.
18591859
18601860To set the callback execution context, provide a ` thisArg ` .
18611861
@@ -2336,7 +2336,7 @@ See [LICENSE][stdlib-license].
23362336
23372337## Copyright
23382338
2339- Copyright & copy; 2016 - 2024 . The Stdlib [Authors][stdlib- authors].
2339+ Copyright & copy; 2016 - 2025 . The Stdlib [Authors][stdlib- authors].
23402340
23412341< / section>
23422342
0 commit comments