Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 24, 2023
1 parent b3ab904 commit e86d075
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,6 @@ indent_size = 2
indent_style = space
indent_size = 2

# Set properties for `tslint.json` files:
[tslint.json]
indent_style = space
indent_size = 2

# Set properties for `tsconfig.json` files:
[tsconfig.json]
indent_style = space
Expand Down
6 changes: 6 additions & 0 deletions base/napi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ The namespace contains the following packages:
<div class="namespace-toc">

- <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>
- <span class="signature">[`quaternary( env, info, fcn )`][@stdlib/math/base/napi/quaternary]</span><span class="delimiter">: </span><span class="description">C APIs for registering a Node-API module exporting interfaces for invoking quaternary numerical functions.</span>
- <span class="signature">[`quinary( env, info, fcn )`][@stdlib/math/base/napi/quinary]</span><span class="delimiter">: </span><span class="description">C APIs for registering a Node-API module exporting interfaces for invoking quinary numerical functions.</span>
- <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>
- <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>

Expand Down Expand Up @@ -92,6 +94,10 @@ console.log( objectKeys( ns ) );

[@stdlib/math/base/napi/binary]: https://github.com/stdlib-js/math/tree/main/base/napi/binary

[@stdlib/math/base/napi/quaternary]: https://github.com/stdlib-js/math/tree/main/base/napi/quaternary

[@stdlib/math/base/napi/quinary]: https://github.com/stdlib-js/math/tree/main/base/napi/quinary

[@stdlib/math/base/napi/ternary]: https://github.com/stdlib-js/math/tree/main/base/napi/ternary

[@stdlib/math/base/napi/unary]: https://github.com/stdlib-js/math/tree/main/base/napi/unary
Expand Down
6 changes: 6 additions & 0 deletions base/ops/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ The namespace contains the following functions:

- <span class="signature">[`add( x, y )`][@stdlib/math/base/ops/add]</span><span class="delimiter">: </span><span class="description">compute the sum of two double-precision floating-point numbers.</span>
- <span class="signature">[`add3( x, y, z )`][@stdlib/math/base/ops/add3]</span><span class="delimiter">: </span><span class="description">compute the sum of three double-precision floating-point numbers.</span>
- <span class="signature">[`add4( x, y, z, w )`][@stdlib/math/base/ops/add4]</span><span class="delimiter">: </span><span class="description">compute the sum of four double-precision floating-point numbers.</span>
- <span class="signature">[`add5( x, y, z, w, u )`][@stdlib/math/base/ops/add5]</span><span class="delimiter">: </span><span class="description">compute the sum of five double-precision floating-point numbers.</span>
- <span class="signature">[`addf( x, y )`][@stdlib/math/base/ops/addf]</span><span class="delimiter">: </span><span class="description">compute the sum of two single-precision floating-point numbers.</span>
- <span class="signature">[`cadd( z1, z2 )`][@stdlib/math/base/ops/cadd]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
- <span class="signature">[`caddf( z1, z2 )`][@stdlib/math/base/ops/caddf]</span><span class="delimiter">: </span><span class="description">add two single-precision complex floating-point numbers.</span>
Expand Down Expand Up @@ -113,6 +115,10 @@ console.log( objectKeys( ns ) );

[@stdlib/math/base/ops/add3]: https://github.com/stdlib-js/math/tree/main/base/ops/add3

[@stdlib/math/base/ops/add4]: https://github.com/stdlib-js/math/tree/main/base/ops/add4

[@stdlib/math/base/ops/add5]: https://github.com/stdlib-js/math/tree/main/base/ops/add5

[@stdlib/math/base/ops/addf]: https://github.com/stdlib-js/math/tree/main/base/ops/addf

[@stdlib/math/base/ops/cadd]: https://github.com/stdlib-js/math/tree/main/base/ops/cadd
Expand Down

0 comments on commit e86d075

Please sign in to comment.