Skip to content

Commit

Permalink
fix: ++ 符号语义纠正
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Nov 24, 2024
1 parent 6a28efc commit 2acd0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/basic/basic_type/number.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub fn main() void {
- `-|`:饱和减法,和上面一样,减法结果最小为该类型的极限。
- `*|`:饱和乘法,同上,乘法结果最大或最小为该类型的极限。
- `<<|`:饱和左移,同之前,结果为该类型的极限。
- `++`:矩阵(数组)串联,需要两个矩阵(数组)是相同大小(长度)
- `++`:矩阵(数组)串联,需要两个矩阵(数组)内元素类型相同
- `**`:矩阵乘(数组)法,需要在编译期已知矩阵(数组)的大小(长度)和乘的倍数。
运算的优先级:
Expand Down

0 comments on commit 2acd0ec

Please sign in to comment.