Skip to content

Commit ce087f5

Browse files
committed
Fix not saving the readme.md
1 parent 02db7b4 commit ce087f5

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,7 @@ The try...catch will be generated dynamically with the macro **match_e**, surrou
180180
### `match_e(EXPR, Lambdas...)`
181181
The `match_e` macro allows you to perform pattern matching on the result of a function call that returns a `Result`. Unlike `match`, it supports exceptions: if the function call throws an exception (via `expect_e` or otherwise), `match_e` catches it and applies the provided lambdas to handle the exception.
182182
183-
match_e will **AUTOMATICALLY** surround the expression EXPR in a try...catch block that handles all the Error types returned by EXPR.
184183
185-
If an error is thrown that was not specified in match_e, it will be rethrown.
186-
If only using cpp-match, this is minimized because in match_e you have to exhaustively pass a callable to all possible variant returns of parse_int.
187184
188185
- **Usage Details:**
189186
- **EXPR:** Must be a function call expression (not an lvalue), as enforced by a static assertion.

0 commit comments

Comments
 (0)