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.
&mut expr
1 parent 0d03d51 commit 4093bafCopy full SHA for 4093baf
src/doc/book/syntax-index.md
@@ -45,7 +45,7 @@
45
* `%` (`expr % expr`): arithmetic remainder. Overloadable (`Rem`).
46
* `%=` (`var %= expr`): arithmetic remainder & assignment. Overloadable (`RemAssign`).
47
* `&` (`expr & expr`): bitwise and. Overloadable (`BitAnd`).
48
-* `&` (`&expr`): borrow. See [References and Borrowing].
+* `&` (`&expr`, `&mut expr`): borrow. See [References and Borrowing].
49
* `&` (`&type`, `&mut type`, `&'a type`, `&'a mut type`): borrowed pointer type. See [References and Borrowing].
50
* `&=` (`var &= expr`): bitwise and & assignment. Overloadable (`BitAndAssign`).
51
* `&&` (`expr && expr`): logical and.
0 commit comments