Skip to content

Commit a85a704

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 952d1fa + f708b34 commit a85a704

File tree

14 files changed

+243
-0
lines changed

14 files changed

+243
-0
lines changed

lib/node_modules/@stdlib/assert/tools/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`arrayfcn( predicate )`][@stdlib/assert/tools/array-function]</span><span class="delimiter">: </span><span class="description">return a function which tests if every element in an array passes a test condition.</span>
49+
- <span class="signature">[`arraylikefcn( predicate )`][@stdlib/assert/tools/array-like-function]</span><span class="delimiter">: </span><span class="description">return a function which tests if every element in an array-like object passes a test condition.</span>
50+
- <span class="signature">[`typedarrayfcn( predicate )`][@stdlib/assert/tools/typed-array-function]</span><span class="delimiter">: </span><span class="description">return a function which tests if every element in a typed array passes a test condition.</span>
51+
52+
</div>
53+
4654
<!-- </toc> -->
4755

4856
</section>
@@ -70,6 +78,16 @@ console.log( objectKeys( tools ) );
7078

7179
<section class="links">
7280

81+
<!-- <toc-links> -->
82+
83+
[@stdlib/assert/tools/array-function]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/tools/array-function
84+
85+
[@stdlib/assert/tools/array-like-function]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/tools/array-like-function
86+
87+
[@stdlib/assert/tools/typed-array-function]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/tools/typed-array-function
88+
89+
<!-- </toc-links> -->
90+
7391
</section>
7492

7593
<!-- /.links -->

lib/node_modules/@stdlib/blas/README.md

+33
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,19 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/blas/base]</span><span class="delimiter">: </span><span class="description">standard library base reference basic linear algebra subprograms (BLAS).</span>
49+
- <span class="signature">[`ddot( x, y )`][@stdlib/blas/ddot]</span><span class="delimiter">: </span><span class="description">calculate the dot product of two double-precision floating-point vectors.</span>
50+
- <span class="signature">[`dswap( x, y )`][@stdlib/blas/dswap]</span><span class="delimiter">: </span><span class="description">interchange two double-precision floating-point vectors.</span>
51+
- <span class="signature">[`ext`][@stdlib/blas/ext]</span><span class="delimiter">: </span><span class="description">standard library extended basic linear algebra subprograms (BLAS).</span>
52+
- <span class="signature">[`gdot( x, y )`][@stdlib/blas/gdot]</span><span class="delimiter">: </span><span class="description">calculate the dot product of two vectors.</span>
53+
- <span class="signature">[`gswap( x, y )`][@stdlib/blas/gswap]</span><span class="delimiter">: </span><span class="description">interchange two vectors.</span>
54+
- <span class="signature">[`sdot( x, y )`][@stdlib/blas/sdot]</span><span class="delimiter">: </span><span class="description">calculate the dot product of two single-precision floating-point vectors.</span>
55+
- <span class="signature">[`sswap( x, y )`][@stdlib/blas/sswap]</span><span class="delimiter">: </span><span class="description">interchange two single-precision floating-point vectors.</span>
56+
57+
</div>
58+
4659
<!-- </toc> -->
4760

4861
</section>
@@ -70,6 +83,26 @@ console.log( objectKeys( blas ) );
7083

7184
<section class="links">
7285

86+
<!-- <toc-links> -->
87+
88+
[@stdlib/blas/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base
89+
90+
[@stdlib/blas/ddot]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ddot
91+
92+
[@stdlib/blas/dswap]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/dswap
93+
94+
[@stdlib/blas/ext]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext
95+
96+
[@stdlib/blas/gdot]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/gdot
97+
98+
[@stdlib/blas/gswap]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/gswap
99+
100+
[@stdlib/blas/sdot]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/sdot
101+
102+
[@stdlib/blas/sswap]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/sswap
103+
104+
<!-- </toc-links> -->
105+
73106
</section>
74107

75108
<!-- /.links -->

lib/node_modules/@stdlib/blas/ext/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/blas/ext/base]</span><span class="delimiter">: </span><span class="description">standard library extensions to base basic linear algebra subprograms (BLAS).</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/blas/ext/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/math/base/napi/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ The namespace contains the following packages:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`binary( env, info, fcn )`][@stdlib/math/base/napi/binary]</span><span class="delimiter">: </span><span class="description">C APIs for registering a Node-API module exporting interfaces for invoking binary numerical functions.</span>
49+
- <span class="signature">[`ternary( env, info, fcn )`][@stdlib/math/base/napi/ternary]</span><span class="delimiter">: </span><span class="description">C APIs for registering a Node-API module exporting interfaces for invoking ternary numerical functions.</span>
50+
- <span class="signature">[`unary( env, info, fcn )`][@stdlib/math/base/napi/unary]</span><span class="delimiter">: </span><span class="description">C APIs for registering a Node-API module exporting interfaces for invoking unary numerical functions.</span>
51+
52+
</div>
53+
4654
<!-- </toc> -->
4755

4856
</section>
@@ -72,6 +80,12 @@ console.log( objectKeys( ns ) );
7280

7381
<!-- <toc-links> -->
7482

83+
[@stdlib/math/base/napi/binary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/binary
84+
85+
[@stdlib/math/base/napi/ternary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/ternary
86+
87+
[@stdlib/math/base/napi/unary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/napi/unary
88+
7589
<!-- </toc-links> -->
7690

7791
</section>

lib/node_modules/@stdlib/math/iter/tools/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ The namespace exposes the following functions:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`map( iterator, fcn[, options] )`][@stdlib/math/iter/tools/map]</span><span class="delimiter">: </span><span class="description">create an iterator which invokes a unary function accepting a single numeric argument for each iterated value.</span>
49+
- <span class="signature">[`map2( iter0, iter1, fcn[, options] )`][@stdlib/math/iter/tools/map2]</span><span class="delimiter">: </span><span class="description">create an iterator which invokes a binary function accepting numeric arguments for each iterated value.</span>
50+
- <span class="signature">[`map3( iter0, iter1, iter2, fcn[, options] )`][@stdlib/math/iter/tools/map3]</span><span class="delimiter">: </span><span class="description">create an iterator which invokes a ternary function accepting numeric arguments for each iterated value.</span>
51+
52+
</div>
53+
4654
<!-- </toc> -->
4755

4856
</section>
@@ -72,6 +80,12 @@ console.log( objectKeys( ns ) );
7280

7381
<!-- <toc-links> -->
7482

83+
[@stdlib/math/iter/tools/map]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/iter/tools/map
84+
85+
[@stdlib/math/iter/tools/map2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/iter/tools/map2
86+
87+
[@stdlib/math/iter/tools/map3]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/iter/tools/map3
88+
7589
<!-- </toc-links> -->
7690

7791
</section>

lib/node_modules/@stdlib/math/strided/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`special`][@stdlib/math/strided/special]</span><span class="delimiter">: </span><span class="description">standard library strided array special math functions.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -72,6 +78,8 @@ console.log( objectKeys( ns ) );
7278

7379
<!-- <toc-links> -->
7480

81+
[@stdlib/math/strided/special]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/strided/special
82+
7583
<!-- </toc-links> -->
7684

7785
</section>

lib/node_modules/@stdlib/math/tools/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace exposes the following functions:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`unary( table )`][@stdlib/math/tools/unary]</span><span class="delimiter">: </span><span class="description">multiple dispatch for unary mathematical functions.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -72,6 +78,8 @@ console.log( objectKeys( ns ) );
7278

7379
<!-- <toc-links> -->
7480

81+
[@stdlib/math/tools/unary]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/tools/unary
82+
7583
<!-- </toc-links> -->
7684

7785
</section>

lib/node_modules/@stdlib/number/float32/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/float32/base]</span><span class="delimiter">: </span><span class="description">base utilities for single-precision floating-point numbers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/float32/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float32/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/number/float64/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/float64/base]</span><span class="delimiter">: </span><span class="description">base utilities for double-precision floating-point numbers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/float64/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float64/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/number/int32/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/int32/base]</span><span class="delimiter">: </span><span class="description">base utilities for signed 32-bit integers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/int32/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/int32/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/number/uint16/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/uint16/base]</span><span class="delimiter">: </span><span class="description">base utilities for unsigned 16-bit integers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/uint16/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint16/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/number/uint32/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/uint32/base]</span><span class="delimiter">: </span><span class="description">base utilities for unsigned 32-bit integers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/uint32/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint32/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

lib/node_modules/@stdlib/number/uint8/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ The namespace contains the following:
4343

4444
<!-- <toc pattern="*"> -->
4545

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`base`][@stdlib/number/uint8/base]</span><span class="delimiter">: </span><span class="description">base utilities for unsigned 8-bit integers.</span>
49+
50+
</div>
51+
4652
<!-- </toc> -->
4753

4854
</section>
@@ -70,6 +76,12 @@ console.log( objectKeys( ns ) );
7076

7177
<section class="links">
7278

79+
<!-- <toc-links> -->
80+
81+
[@stdlib/number/uint8/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/uint8/base
82+
83+
<!-- </toc-links> -->
84+
7385
</section>
7486

7587
<!-- /.links -->

0 commit comments

Comments
 (0)