Finish fixing the operator precedence tables
Add the unstable `:` colon and `<-` inplace operators.
This commit is contained in:
parent
877dfeb572
commit
7c1bb9ae0d
1 changed files with 2 additions and 1 deletions
|
|
@ -3039,7 +3039,7 @@ The precedence of Rust binary operators is ordered as follows, going from
|
|||
strong to weak:
|
||||
|
||||
```{.text .precedence}
|
||||
as
|
||||
as :
|
||||
* / %
|
||||
+ -
|
||||
<< >>
|
||||
|
|
@ -3050,6 +3050,7 @@ as
|
|||
&&
|
||||
||
|
||||
.. ...
|
||||
<-
|
||||
=
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue