Algebraic sum of type of result and type of error. Same as expected but with different processing of void. See Expect an Expected for a concept description.
Synopsis
process("bad"); // exception thrown, you shoud assign and check the result
auto ret = process("bad");
if (!ret) {
INFO(ret.error());
} // no problem, ret was checked and processed
process("good"); // no error, no problem
Keyboard Shortcuts
Global
s
Focus search bar
?
Bring up this help dialog
GitHub
gp
Go to pull requests
gi
go to github issues (only if github is preferred repository)