Tag: C++23
2 posts
-
C++ expected | 'Error Handling' Guide
std::expected is a type introduced in C++23 that represents success or error. It explicitly expresses that a function can return a value or an error, al...
-
C++ std::optional Complete Guide | nullopt, Monadic Ops (C++23), and Patterns
std::optional vs nullptr and exceptions: value_or, and_then, transform, or_else, performance, and production error-handling patterns (C++17–C++23).