File tree Expand file tree Collapse file tree 6 files changed +21
-0
lines changed
lib/node_modules/@stdlib/number/uint8/base Expand file tree Collapse file tree 6 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 2
2
{{alias}}( x, y )
3
3
Computes the sum of two unsigned 8-bit integers `x` and `y`.
4
4
5
+ The function performs C-like addition of two unsigned 8-bit integers,
6
+ including wraparound semantics.
7
+
5
8
Parameters
6
9
----------
7
10
x: integer
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Computes the sum of two unsigned 8-bit integers `x` and `y`.
23
23
*
24
+ * ## Notes
25
+ *
26
+ * - The function performs C-like addition of two unsigned 8-bit integers, including wraparound semantics.
27
+ *
24
28
* @param x - first input value
25
29
* @param y - second input value
26
30
* @returns sum
Original file line number Diff line number Diff line change 2
2
{{alias}}( x, y )
3
3
Multiplies two unsigned 8-bit integers `x` and `y`.
4
4
5
+ The function performs C-like multiplication of two unsigned 8-bit integers,
6
+ including wraparound semantics.
7
+
5
8
Parameters
6
9
----------
7
10
x: integer
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Multiplies two unsigned 8-bit integers `x` and `y`.
23
23
*
24
+ * ## Notes
25
+ *
26
+ * - The function performs C-like multiplication of two unsigned 8-bit integers, including wraparound semantics.
27
+ *
24
28
* @param x - first input value
25
29
* @param y - second input value
26
30
* @returns result
Original file line number Diff line number Diff line change 2
2
{{alias}}( x, y )
3
3
Subtracts two unsigned 8-bit integers `x` and `y`.
4
4
5
+ The function performs C-like subtraction of two unsigned 8-bit integers,
6
+ including wraparound semantics.
7
+
5
8
Parameters
6
9
----------
7
10
x: integer
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Subtracts two unsigned 8-bit integers `x` and `y`.
23
23
*
24
+ * ## Notes
25
+ *
26
+ * - The function performs C-like subtraction of two unsigned 8-bit integers, including wraparound semantics.
27
+ *
24
28
* @param x - first input value
25
29
* @param y - second input value
26
30
* @returns result
You can’t perform that action at this time.
0 commit comments