Skip to content

Commit b299663

Browse files
committed
chore: 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: na - task: lint_package_json status: na - task: lint_repl_help status: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5cb475e commit b299663

File tree

6 files changed

+21
-0
lines changed

6 files changed

+21
-0
lines changed

lib/node_modules/@stdlib/number/uint8/base/add/docs/repl.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
{{alias}}( x, y )
33
Computes the sum of two unsigned 8-bit integers `x` and `y`.
44

5+
The function performs C-like addition of two unsigned 8-bit integers,
6+
including wraparound semantics.
7+
58
Parameters
69
----------
710
x: integer

lib/node_modules/@stdlib/number/uint8/base/add/docs/types/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
/**
2222
* Computes the sum of two unsigned 8-bit integers `x` and `y`.
2323
*
24+
* ## Notes
25+
*
26+
* - The function performs C-like addition of two unsigned 8-bit integers, including wraparound semantics.
27+
*
2428
* @param x - first input value
2529
* @param y - second input value
2630
* @returns sum

lib/node_modules/@stdlib/number/uint8/base/mul/docs/repl.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
{{alias}}( x, y )
33
Multiplies two unsigned 8-bit integers `x` and `y`.
44

5+
The function performs C-like multiplication of two unsigned 8-bit integers,
6+
including wraparound semantics.
7+
58
Parameters
69
----------
710
x: integer

lib/node_modules/@stdlib/number/uint8/base/mul/docs/types/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
/**
2222
* Multiplies two unsigned 8-bit integers `x` and `y`.
2323
*
24+
* ## Notes
25+
*
26+
* - The function performs C-like multiplication of two unsigned 8-bit integers, including wraparound semantics.
27+
*
2428
* @param x - first input value
2529
* @param y - second input value
2630
* @returns result

lib/node_modules/@stdlib/number/uint8/base/sub/docs/repl.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
{{alias}}( x, y )
33
Subtracts two unsigned 8-bit integers `x` and `y`.
44

5+
The function performs C-like subtraction of two unsigned 8-bit integers,
6+
including wraparound semantics.
7+
58
Parameters
69
----------
710
x: integer

lib/node_modules/@stdlib/number/uint8/base/sub/docs/types/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
/**
2222
* Subtracts two unsigned 8-bit integers `x` and `y`.
2323
*
24+
* ## Notes
25+
*
26+
* - The function performs C-like subtraction of two unsigned 8-bit integers, including wraparound semantics.
27+
*
2428
* @param x - first input value
2529
* @param y - second input value
2630
* @returns result

0 commit comments

Comments
 (0)