Skip to content

Commit 6e5459a

Browse files
committed
docs: add notes
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9cecbb4 commit 6e5459a

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ v = add( 0, 5 );
6363

6464
<section class="notes">
6565

66+
## Notes
67+
68+
- The function performs C-like addition of two unsigned 16-bit integers, including wraparound semantics.
69+
6670
</section>
6771

6872
<!-- /.notes -->

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ v = mul( 5, 0 );
6363

6464
<section class="notes">
6565

66+
## Notes
67+
68+
- The function performs C-like multiplication of two unsigned 16-bit integers, including wraparound semantics.
69+
6670
</section>
6771

6872
<!-- /.notes -->

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ v = sub( 5, 0 );
6363

6464
<section class="notes">
6565

66+
## Notes
67+
68+
- The function performs C-like subtraction of two unsigned 16-bit integers, including wraparound semantics.
69+
6670
</section>
6771

6872
<!-- /.notes -->

0 commit comments

Comments
 (0)