Skip to content

Commit cacca61

Browse files
committed
docs: update links
1 parent 2d59dc3 commit cacca61

File tree

27 files changed

+355
-44
lines changed

27 files changed

+355
-44
lines changed

lib/node_modules/@stdlib/utils/async/reduce-right/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ reduceRightAsync( files, acc, read, done );
412412

413413
- <span class="package-name">[`@stdlib/utils/async/for-each-right`][@stdlib/utils/async/for-each-right]</span><span class="delimiter">: </span><span class="description">invoke a function once for each element in a collection, iterating from right to left.</span>
414414
- <span class="package-name">[`@stdlib/utils/async/reduce`][@stdlib/utils/async/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
415-
- <span class="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><span class="delimiter">: </span><span class="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+
- <span class="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><span class="delimiter">: </span><span class="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>
416416

417417
</section>
418418

lib/node_modules/@stdlib/utils/async/reduce/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ reduceAsync( files, acc, read, done );
411411
## See Also
412412

413413
- <span class="package-name">[`@stdlib/utils/async/for-each`][@stdlib/utils/async/for-each]</span><span class="delimiter">: </span><span class="description">invoke a function once for each element in a collection.</span>
414-
- <span class="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in a collection and return the accumulated result.</span>
414+
- <span class="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
415415
- <span class="package-name">[`@stdlib/utils/async/reduce-right`][@stdlib/utils/async/reduce-right]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in a collection and return the accumulated result, iterating from right to left.</span>
416416

417417
</section>

lib/node_modules/@stdlib/utils/dsv/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ The namespace contains the following utilities:
5757

5858
<div class="namespace-toc">
5959

60-
6160
</div>
6261

6362
<!-- </toc> -->

lib/node_modules/@stdlib/utils/dsv/base/parse/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The constructor accepts the following `options`:
8686
- **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:
8787

8888
- **value**: unparsed partially processed **field** text.
89-
89+
9090
Otherwise, the callback is invoked without any arguments.
9191

9292
- **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`:
111111
- **row**: row number (zero-based).
112112
- **ncols**: number of fields (columns).
113113
- **line**: line number (zero-based).
114-
114+
115115
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.
116116

117117
- **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`:
139139

140140
- **nrows**: number of processed rows (equivalent to the current row number).
141141
- **line**: line number (zero-based).
142-
142+
143143
If the callback returns a truthy value, the parser skips the row; otherwise, the parser attempts to process the row.
144144

145145
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.

lib/node_modules/@stdlib/utils/filter-arguments/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,15 @@ for ( i = 0; i < x.length-1; i++ ) {
164164

165165
<section class="related">
166166

167+
* * *
168+
169+
## See Also
170+
171+
- <span class="package-name">[`@stdlib/utils/mask-arguments`][@stdlib/utils/mask-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to an argument mask.</span>
172+
- <span class="package-name">[`@stdlib/utils/reject-arguments`][@stdlib/utils/reject-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to a predicate function.</span>
173+
- <span class="package-name">[`@stdlib/utils/reorder-arguments`][@stdlib/utils/reorder-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with reordered arguments.</span>
174+
- <span class="package-name">[`@stdlib/utils/reverse-arguments`][@stdlib/utils/reverse-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function with arguments in reverse order.</span>
175+
167176
</section>
168177

169178
<!-- /.related -->
@@ -172,6 +181,18 @@ for ( i = 0; i < x.length-1; i++ ) {
172181

173182
<section class="links">
174183

184+
<!-- <related-links> -->
185+
186+
[@stdlib/utils/mask-arguments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/mask-arguments
187+
188+
[@stdlib/utils/reject-arguments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reject-arguments
189+
190+
[@stdlib/utils/reorder-arguments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reorder-arguments
191+
192+
[@stdlib/utils/reverse-arguments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reverse-arguments
193+
194+
<!-- </related-links> -->
195+
175196
</section>
176197

177198
<!-- /.links -->

lib/node_modules/@stdlib/utils/inmap-right/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ console.log( out );
223223

224224
- <span class="package-name">[`@stdlib/utils/for-each-right`][@stdlib/utils/for-each-right]</span><span class="delimiter">: </span><span class="description">invoke a function for each element in a collection, iterating from right to left.</span>
225225
- <span class="package-name">[`@stdlib/utils/inmap`][@stdlib/utils/inmap]</span><span class="delimiter">: </span><span class="description">invoke a function for each element in a collection and update the collection in-place.</span>
226+
- <span class="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><span class="delimiter">: </span><span class="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>
226227

227228
</section>
228229

@@ -246,6 +247,8 @@ console.log( out );
246247

247248
[@stdlib/utils/inmap]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/inmap
248249

250+
[@stdlib/utils/map-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-right
251+
249252
<!-- </related-links> -->
250253

251254
</section>

lib/node_modules/@stdlib/utils/inmap/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ console.log( out );
218218

219219
- <span class="package-name">[`@stdlib/utils/for-each`][@stdlib/utils/for-each]</span><span class="delimiter">: </span><span class="description">invoke a function for each element in a collection.</span>
220220
- <span class="package-name">[`@stdlib/utils/inmap-right`][@stdlib/utils/inmap-right]</span><span class="delimiter">: </span><span class="description">invoke a function for each element in a collection and update the collection in-place, iterating from right to left.</span>
221+
- <span class="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><span class="delimiter">: </span><span class="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
221222

222223
</section>
223224

@@ -241,6 +242,8 @@ console.log( out );
241242

242243
[@stdlib/utils/inmap-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/inmap-right
243244

245+
[@stdlib/utils/map]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map
246+
244247
<!-- </related-links> -->
245248

246249
</section>

lib/node_modules/@stdlib/utils/map-arguments/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,12 @@ for ( i = 0; i < x.length-1; i++ ) {
165165

166166
<section class="related">
167167

168+
* * *
169+
170+
## See Also
171+
172+
- <span class="package-name">[`@stdlib/utils/filter-arguments`][@stdlib/utils/filter-arguments]</span><span class="delimiter">: </span><span class="description">create a function that invokes a provided function according to a predicate function.</span>
173+
168174
</section>
169175

170176
<!-- /.related -->
@@ -173,6 +179,12 @@ for ( i = 0; i < x.length-1; i++ ) {
173179

174180
<section class="links">
175181

182+
<!-- <related-links> -->
183+
184+
[@stdlib/utils/filter-arguments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/filter-arguments
185+
186+
<!-- </related-links> -->
187+
176188
</section>
177189

178190
<!-- /.links -->

lib/node_modules/@stdlib/utils/map-reduce-right/README.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,14 @@ console.log( 'sum: %d', out );
227227

228228
<section class="related">
229229

230+
* * *
231+
232+
## See Also
233+
234+
- <span class="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><span class="delimiter">: </span><span class="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+
- <span class="package-name">[`@stdlib/utils/map-reduce`][@stdlib/utils/map-reduce]</span><span class="delimiter">: </span><span class="description">perform a single-pass map-reduce operation against each element in an array and return the accumulated result.</span>
236+
- <span class="package-name">[`@stdlib/utils/reduce-right`][@stdlib/utils/reduce-right]</span><span class="delimiter">: </span><span class="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+
230238
</section>
231239

232240
<!-- /.related -->
@@ -235,11 +243,21 @@ console.log( 'sum: %d', out );
235243

236244
<section class="links">
237245

238-
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib
246+
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
247+
248+
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
249+
250+
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex128
251+
252+
<!-- <related-links> -->
253+
254+
[@stdlib/utils/map-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-right
255+
256+
[@stdlib/utils/map-reduce]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-reduce
239257

240-
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib
258+
[@stdlib/utils/reduce-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reduce-right
241259

242-
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib
260+
<!-- </related-links> -->
243261

244262
</section>
245263

lib/node_modules/@stdlib/utils/map-reduce/README.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,14 @@ console.log( 'sum: %d', out );
227227

228228
<section class="related">
229229

230+
* * *
231+
232+
## See Also
233+
234+
- <span class="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><span class="delimiter">: </span><span class="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
235+
- <span class="package-name">[`@stdlib/utils/map-reduce-right`][@stdlib/utils/map-reduce-right]</span><span class="delimiter">: </span><span class="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+
- <span class="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
237+
230238
</section>
231239

232240
<!-- /.related -->
@@ -235,11 +243,21 @@ console.log( 'sum: %d', out );
235243

236244
<section class="links">
237245

238-
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib
246+
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
247+
248+
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
249+
250+
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex128
251+
252+
<!-- <related-links> -->
253+
254+
[@stdlib/utils/map]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map
255+
256+
[@stdlib/utils/map-reduce-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-reduce-right
239257

240-
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib
258+
[@stdlib/utils/reduce]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reduce
241259

242-
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib
260+
<!-- </related-links> -->
243261

244262
</section>
245263

lib/node_modules/@stdlib/utils/map-right/README.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,13 @@ console.log( y.data );
283283

284284
<section class="related">
285285

286+
* * *
287+
288+
## See Also
289+
290+
- <span class="package-name">[`@stdlib/utils/map`][@stdlib/utils/map]</span><span class="delimiter">: </span><span class="description">apply a function to each element in an array and assign the result to an element in an output array.</span>
291+
- <span class="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
292+
286293
</section>
287294

288295
<!-- /.related -->
@@ -291,20 +298,28 @@ console.log( y.data );
291298

292299
<section class="links">
293300

294-
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib
301+
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
295302

296-
[@stdlib/ndarray/base/unary]: https://github.com/stdlib-js/stdlib
303+
[@stdlib/ndarray/base/unary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/unary
297304

298-
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib
305+
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes
299306

300-
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib
307+
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-contiguous
301308

302-
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib
309+
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
303310

304-
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib
311+
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex128
305312

306313
[mdn-typedarray-map]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map
307314

315+
<!-- <related-links> -->
316+
317+
[@stdlib/utils/map]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map
318+
319+
[@stdlib/utils/reduce]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reduce
320+
321+
<!-- </related-links> -->
322+
308323
</section>
309324

310325
<!-- /.links -->

lib/node_modules/@stdlib/utils/map/README.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,13 @@ console.log( y.data );
283283

284284
<section class="related">
285285

286+
* * *
287+
288+
## See Also
289+
290+
- <span class="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><span class="delimiter">: </span><span class="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+
- <span class="package-name">[`@stdlib/utils/reduce`][@stdlib/utils/reduce]</span><span class="delimiter">: </span><span class="description">apply a function against an accumulator and each element in an array and return the accumulated result.</span>
292+
286293
</section>
287294

288295
<!-- /.related -->
@@ -291,20 +298,28 @@ console.log( y.data );
291298

292299
<section class="links">
293300

294-
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib
301+
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
295302

296-
[@stdlib/ndarray/base/unary]: https://github.com/stdlib-js/stdlib
303+
[@stdlib/ndarray/base/unary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/unary
297304

298-
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib
305+
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes
299306

300-
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib
307+
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-contiguous
301308

302-
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib
309+
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
303310

304-
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib
311+
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex128
305312

306313
[mdn-typedarray-map]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map
307314

315+
<!-- <related-links> -->
316+
317+
[@stdlib/utils/map-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-right
318+
319+
[@stdlib/utils/reduce]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/reduce
320+
321+
<!-- </related-links> -->
322+
308323
</section>
309324

310325
<!-- /.links -->

lib/node_modules/@stdlib/utils/map2-right/README.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,13 @@ console.log( z.data );
294294

295295
<section class="related">
296296

297+
* * *
298+
299+
## See Also
300+
301+
- <span class="package-name">[`@stdlib/utils/map-right`][@stdlib/utils/map-right]</span><span class="delimiter">: </span><span class="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+
- <span class="package-name">[`@stdlib/utils/map2`][@stdlib/utils/map2]</span><span class="delimiter">: </span><span class="description">apply a function to elements in two input arrays and assign the results to an output array.</span>
303+
297304
</section>
298305

299306
<!-- /.related -->
@@ -302,17 +309,25 @@ console.log( z.data );
302309

303310
<section class="links">
304311

305-
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib
312+
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
313+
314+
[@stdlib/ndarray/base/binary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/binary
315+
316+
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes
317+
318+
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assert/is-contiguous
319+
320+
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
306321

307-
[@stdlib/ndarray/base/binary]: https://github.com/stdlib-js/stdlib
322+
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex128
308323

309-
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib
324+
<!-- <related-links> -->
310325

311-
[@stdlib/ndarray/base/assert/is-contiguous]: https://github.com/stdlib-js/stdlib
326+
[@stdlib/utils/map-right]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map-right
312327

313-
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib
328+
[@stdlib/utils/map2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/map2
314329

315-
[@stdlib/array/complex128]: https://github.com/stdlib-js/stdlib
330+
<!-- </related-links> -->
316331

317332
</section>
318333

0 commit comments

Comments
 (0)