Roast topics
Find topics
Roast it!
Roast topics
Find topics
Find it!
Login
From:
godbolt.org
(Uncensored)
subscribe
Compiler Explorer
https://godbolt.org/z/YYcT5Ef5E
links
backlinks
int main() { std::expected<int, std::string> result{std::unexpected("")}; int value = result.value_or(0); // Returns 0 if result holds an error std::cout << "Value: " << value << '\n'; }