You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/doc/book/syntax-index.md
+2
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,7 @@
94
94
*`|=` (`var |= expr`): bitwise or & assignment. Overloadable (`BitOrAssign`).
95
95
*`||` (`expr || expr`): logical or.
96
96
*`_`: "ignored" pattern binding (see [Patterns (Ignoring bindings)]). Also used to make integer-literals readable (see [Reference (Integer literals)]).
97
+
*`?` (`expr?`): Error propagation. Returns early when `Err(_)` is encountered, unwraps otherwise. Similar to the [`try!` macro].
0 commit comments