Skip to content

Commit ff68f31

Browse files
committed
Auto-generated commit
1 parent 4d56211 commit ff68f31

File tree

4 files changed

+47
-7
lines changed

4 files changed

+47
-7
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ npm install @stdlib/complex
4545

4646
Alternatively,
4747

48-
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm` branch][esm-url].
49-
- If you are using Deno, visit the [`deno` branch][deno-url].
50-
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd` branch][umd-url].
48+
- To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]).
49+
- If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions).
50+
- For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]).
5151

5252
The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships.
5353

54+
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
55+
5456
</section>
5557

5658
<section class="usage">
@@ -229,8 +231,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
229231
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
230232

231233
[deno-url]: https://github.com/stdlib-js/complex/tree/deno
234+
[deno-readme]: https://github.com/stdlib-js/complex/blob/deno/README.md
232235
[umd-url]: https://github.com/stdlib-js/complex/tree/umd
236+
[umd-readme]: https://github.com/stdlib-js/complex/blob/umd/README.md
233237
[esm-url]: https://github.com/stdlib-js/complex/tree/esm
238+
[esm-readme]: https://github.com/stdlib-js/complex/blob/esm/README.md
234239
[branches-url]: https://github.com/stdlib-js/complex/blob/main/branches.md
235240

236241
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/complex/main/LICENSE

base/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The namespace contains the following functions:
4545

4646
<div class="namespace-toc">
4747

48+
- <span class="signature">[`assert`][@stdlib/complex/base/assert]</span><span class="delimiter">: </span><span class="description">base complex number assert functions.</span>
4849
- <span class="signature">[`cast( fcn, nargs, ctor )`][@stdlib/complex/base/cast-return]</span><span class="delimiter">: </span><span class="description">wrap a function and cast a function's return value to a complex number.</span>
4950
- <span class="signature">[`wrap( fcn, nargs, ctor )`][@stdlib/complex/base/wrap-function]</span><span class="delimiter">: </span><span class="description">wrap a function accepting complex number arguments to support providing both real and complex numbers.</span>
5051

@@ -97,6 +98,8 @@ console.log( objectKeys( ns ) );
9798

9899
<!-- <toc-links> -->
99100

101+
[@stdlib/complex/base/assert]: https://github.com/stdlib-js/complex/tree/main/base/assert
102+
100103
[@stdlib/complex/base/cast-return]: https://github.com/stdlib-js/complex/tree/main/base/cast-return
101104

102105
[@stdlib/complex/base/wrap-function]: https://github.com/stdlib-js/complex/tree/main/base/wrap-function

base/assert/README.md

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

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

46+
<div class="namespace-toc">
47+
48+
- <span class="signature">[`isEqual( z1, z2 )`][@stdlib/complex/base/assert/is-equal]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are equal.</span>
49+
- <span class="signature">[`isEqualf( z1, z2 )`][@stdlib/complex/base/assert/is-equalf]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are equal.</span>
50+
- <span class="signature">[`isNotEqual( z1, z2 )`][@stdlib/complex/base/assert/is-not-equal]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are not equal.</span>
51+
- <span class="signature">[`isNotEqualf( z1, z2 )`][@stdlib/complex/base/assert/is-not-equalf]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are not equal.</span>
52+
- <span class="signature">[`isSameValueZero( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zero]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are the same value.</span>
53+
- <span class="signature">[`isSameValueZerof( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zerof]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are the same value.</span>
54+
- <span class="signature">[`isSameValue( z1, z2 )`][@stdlib/complex/base/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are the same value.</span>
55+
- <span class="signature">[`isSameValuef( z1, z2 )`][@stdlib/complex/base/assert/is-same-valuef]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are the same value.</span>
56+
57+
</div>
58+
4659
<!-- </toc> -->
4760

4861
</section>
@@ -90,6 +103,22 @@ console.log( objectKeys( ns ) );
90103

91104
<!-- <toc-links> -->
92105

106+
[@stdlib/complex/base/assert/is-equal]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-equal
107+
108+
[@stdlib/complex/base/assert/is-equalf]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-equalf
109+
110+
[@stdlib/complex/base/assert/is-not-equal]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-not-equal
111+
112+
[@stdlib/complex/base/assert/is-not-equalf]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-not-equalf
113+
114+
[@stdlib/complex/base/assert/is-same-value-zero]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-same-value-zero
115+
116+
[@stdlib/complex/base/assert/is-same-value-zerof]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-same-value-zerof
117+
118+
[@stdlib/complex/base/assert/is-same-value]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-same-value
119+
120+
[@stdlib/complex/base/assert/is-same-valuef]: https://github.com/stdlib-js/complex/tree/main/base/assert/is-same-valuef
121+
93122
<!-- </toc-links> -->
94123

95124
</section>

branches.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ This repository has the following branches:
2424

2525
- **main**: default branch generated from the [stdlib project][stdlib-url], where all development takes place.
2626
- **production**: [production build][production-url] of the package (e.g., reformatted error messages to reduce bundle sizes and thus the number of bytes transmitted over a network).
27-
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers.
28-
- **deno**: [Deno][deno-url] branch for use in Deno.
29-
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments.
27+
- **esm**: [ES Module][esm-url] branch for use via a `script` tag without the need for installation and bundlers (see [README][esm-readme]).
28+
- **deno**: [Deno][deno-url] branch for use in Deno (see [README][deno-readme]).
29+
- **umd**: [UMD][umd-url] branch for use in Observable, or in dual browser/Node.js environments (see [README][umd-readme]).
3030

3131
The following diagram illustrates the relationships among the above branches:
3232

@@ -49,5 +49,8 @@ C -->|bundle| F[umd];
4949
[stdlib-url]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex
5050
[production-url]: https://github.com/stdlib-js/complex/tree/production
5151
[deno-url]: https://github.com/stdlib-js/complex/tree/deno
52+
[deno-readme]: https://github.com/stdlib-js/complex/blob/deno/README.md
5253
[umd-url]: https://github.com/stdlib-js/complex/tree/umd
53-
[esm-url]: https://github.com/stdlib-js/complex/tree/esm
54+
[umd-readme]: https://github.com/stdlib-js/complex/blob/umd/README.md
55+
[esm-url]: https://github.com/stdlib-js/complex/tree/esm
56+
[esm-readme]: https://github.com/stdlib-js/complex/blob/esm/README.md

0 commit comments

Comments
 (0)