You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- <spanclass="package-name">[`@stdlib/utils/async/for-each-right`][@stdlib/utils/async/for-each-right]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function once for each element in a collection, iterating from right to left.</span>
414
414
- <spanclass="package-name">[`@stdlib/utils/async/reduce`][@stdlib/utils/async/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
415
-
- <spanclass="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.</span>
415
+
- <spanclass="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array while iterating from right to left and return the accumulated result.</span>
- <spanclass="package-name">[`@stdlib/utils/async/for-each`][@stdlib/utils/async/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function once for each element in a collection.</span>
414
-
- <spanclass="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
414
+
- <spanclass="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
415
415
- <spanclass="package-name">[`@stdlib/utils/async/reduce-right`][@stdlib/utils/async/reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/dsv/base/parse/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ The constructor accepts the following `options`:
86
86
-**onClose**: callback to be invoked upon closing the parser. If a parser has partially processed a record upon close, the callback is invoked with the following arguments:
Otherwise, the callback is invoked without any arguments.
91
91
92
92
-**onColumn**: callback to be invoked upon processing a field. The callback is invoked with the following arguments:
@@ -111,7 +111,7 @@ The constructor accepts the following `options`:
111
111
-**row**: row number (zero-based).
112
112
-**ncols**: number of fields (columns).
113
113
-**line**: line number (zero-based).
114
-
114
+
115
115
If a parser is closed **before** fully processing the last record, the callback is invoked with field data for all fields which have been parsed. Any remaining field data is provided to the `onClose` callback. For example, if a parser has processed two fields and closes while attempting to process a third field, the parser invokes the `onRow` callback with field data for the first two fields and invokes the `onClose` callback with the partially processed data for the third field.
116
116
117
117
-**onSkip**: callback to be invoked upon processing a skipped line. The callback is invoked with the following arguments:
@@ -139,7 +139,7 @@ The constructor accepts the following `options`:
139
139
140
140
-**nrows**: number of processed rows (equivalent to the current row number).
141
141
-**line**: line number (zero-based).
142
-
142
+
143
143
If the callback returns a truthy value, the parser skips the row; otherwise, the parser attempts to process the row.
144
144
145
145
Note, however, that, even if the callback returns a falsy value, a row may still be skipped depending on the presence of a `skip` character sequence.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/filter-arguments/README.md
+21
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,15 @@ for ( i = 0; i < x.length-1; i++ ) {
164
164
165
165
<sectionclass="related">
166
166
167
+
* * *
168
+
169
+
## See Also
170
+
171
+
- <spanclass="package-name">[`@stdlib/utils/mask-arguments`][@stdlib/utils/mask-arguments]</span><spanclass="delimiter">: </span><spanclass="description">create a function that invokes a provided function according to an argument mask.</span>
172
+
- <spanclass="package-name">[`@stdlib/utils/reject-arguments`][@stdlib/utils/reject-arguments]</span><spanclass="delimiter">: </span><spanclass="description">create a function that invokes a provided function according to a predicate function.</span>
173
+
- <spanclass="package-name">[`@stdlib/utils/reorder-arguments`][@stdlib/utils/reorder-arguments]</span><spanclass="delimiter">: </span><spanclass="description">create a function that invokes a provided function with reordered arguments.</span>
174
+
- <spanclass="package-name">[`@stdlib/utils/reverse-arguments`][@stdlib/utils/reverse-arguments]</span><spanclass="delimiter">: </span><spanclass="description">create a function that invokes a provided function with arguments in reverse order.</span>
175
+
167
176
</section>
168
177
169
178
<!-- /.related -->
@@ -172,6 +181,18 @@ for ( i = 0; i < x.length-1; i++ ) {
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/inmap-right/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -223,6 +223,7 @@ console.log( out );
223
223
224
224
- <spanclass="package-name">[`@stdlib/utils/for-each-right`][@stdlib/utils/for-each-right]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function for each element in a collection, iterating from right to left.</span>
225
225
- <spanclass="package-name">[`@stdlib/utils/inmap`][@stdlib/utils/inmap]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function for each element in a collection and update the collection in-place.</span>
226
+
- <spanclass="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/inmap/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -218,6 +218,7 @@ console.log( out );
218
218
219
219
- <spanclass="package-name">[`@stdlib/utils/for-each`][@stdlib/utils/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function for each element in a collection.</span>
220
220
- <spanclass="package-name">[`@stdlib/utils/inmap-right`][@stdlib/utils/inmap-right]</span><spanclass="delimiter">: </span><spanclass="description">invoke a function for each element in a collection and update the collection in-place, iterating from right to left.</span>
221
+
- <spanclass="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map-arguments/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,12 @@ for ( i = 0; i < x.length-1; i++ ) {
165
165
166
166
<sectionclass="related">
167
167
168
+
* * *
169
+
170
+
## See Also
171
+
172
+
- <spanclass="package-name">[`@stdlib/utils/filter-arguments`][@stdlib/utils/filter-arguments]</span><spanclass="delimiter">: </span><spanclass="description">create a function that invokes a provided function according to a predicate function.</span>
173
+
168
174
</section>
169
175
170
176
<!-- /.related -->
@@ -173,6 +179,12 @@ for ( i = 0; i < x.length-1; i++ ) {
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map-reduce-right/README.md
+21-3
Original file line number
Diff line number
Diff line change
@@ -227,6 +227,14 @@ console.log( 'sum: %d', out );
227
227
228
228
<sectionclass="related">
229
229
230
+
* * *
231
+
232
+
## See Also
233
+
234
+
- <spanclass="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.</span>
235
+
- <spanclass="package-name">[`@stdlib/utils/map-reduce`][@stdlib/utils/map-reduce]</span><spanclass="delimiter">: </span><spanclass="description">perform a single-pass map-reduce operation against each element in an array and return the accumulated result.</span>
236
+
- <spanclass="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array while iterating from right to left and return the accumulated result.</span>
237
+
230
238
</section>
231
239
232
240
<!-- /.related -->
@@ -235,11 +243,21 @@ console.log( 'sum: %d', out );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map-reduce/README.md
+21-3
Original file line number
Diff line number
Diff line change
@@ -227,6 +227,14 @@ console.log( 'sum: %d', out );
227
227
228
228
<sectionclass="related">
229
229
230
+
* * *
231
+
232
+
## See Also
233
+
234
+
- <spanclass="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
235
+
- <spanclass="package-name">[`@stdlib/utils/map-reduce-right`][@stdlib/utils/map-reduce-right]</span><spanclass="delimiter">: </span><spanclass="description">perform a single-pass map-reduce operation against each element in an array while iterating from right to left and return the accumulated result.</span>
236
+
- <spanclass="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
237
+
230
238
</section>
231
239
232
240
<!-- /.related -->
@@ -235,11 +243,21 @@ console.log( 'sum: %d', out );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map-right/README.md
+21-6
Original file line number
Diff line number
Diff line change
@@ -283,6 +283,13 @@ console.log( y.data );
283
283
284
284
<sectionclass="related">
285
285
286
+
* * *
287
+
288
+
## See Also
289
+
290
+
- <spanclass="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
291
+
- <spanclass="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map/README.md
+21-6
Original file line number
Diff line number
Diff line change
@@ -283,6 +283,13 @@ console.log( y.data );
283
283
284
284
<sectionclass="related">
285
285
286
+
* * *
287
+
288
+
## See Also
289
+
290
+
- <spanclass="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.</span>
291
+
- <spanclass="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><spanclass="delimiter">: </span><spanclass="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/utils/map2-right/README.md
+21-6
Original file line number
Diff line number
Diff line change
@@ -294,6 +294,13 @@ console.log( z.data );
294
294
295
295
<sectionclass="related">
296
296
297
+
* * *
298
+
299
+
## See Also
300
+
301
+
- <spanclass="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.</span>
302
+
- <spanclass="package-name">[`@stdlib/utils/map2`][@stdlib/utils/map2]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to elements in two input arrays and assign the results to an output array.</span>
0 commit comments