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 05b7612 commit d2588a8Copy full SHA for d2588a8
README.md
@@ -46,7 +46,7 @@ Response ret = makeRequest();
46
To see which type the `Response` holds you pattern match on the variant unwrapping the underlying value:
47
48
```c++
49
-ret.match([] (Result r) { print(r.object); }
+ret.match([] (Result r) { print(r.object); },
50
[] (Error e) { print(e.message); });
51
```
52
0 commit comments