We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e607d76 commit c3156a8Copy full SHA for c3156a8
src/doc/grammar.md
@@ -612,30 +612,6 @@ assignment_expr : expr '=' expr ;
612
compound_assignment_expr : expr [ arith_op | bitwise_op ] '=' expr ;
613
```
614
615
-#### Operator precedence
616
-
617
-The precedence of Rust binary operators is ordered as follows, going from
618
-strong to weak:
619
620
-```text
621
-* / %
622
-as
623
-+ -
624
-<< >>
625
-&
626
-^
627
-|
628
-< > <= >=
629
-== !=
630
-&&
631
-||
632
-=
633
-```
634
635
-Operators at the same precedence level are evaluated left-to-right. [Unary
636
-operators](#unary-operator-expressions) have the same precedence level and it
637
-is stronger than any of the binary operators'.
638
639
### Grouped expressions
640
641
```antlr
0 commit comments