20
you are viewing a single comment's thread
view the rest of the comments
[-] mercator_rejection@programming.dev 4 points 10 months ago* (last edited 10 months ago)

The main problem with std:: expected is lack of language support. In theory, it works well as an alternative to exceptions, with nice self contained monadic statements. In practice, it is actually much worse than what the article suggests.

main issues -

  1. as I said, no language level support. You eventually end up with messy code somewhere because the library code can't simplify things enough. You end up with if checks strew about that really oaught to be a language paradigm.

  2. there is not a lot of code making use of it, so at the boundaries of your code you have to make adaptations to and from std:: expected from whatever some library chose to use.

  3. adapting your existing codebase is basically impossible. Perhaps if you are starting a new project you can do it, but it is different enough that all your existing code must be updated to accommodate the new paradigm and it's just an awful experience doing the work and being in a mix of error handling.

[-] cschreib@programming.dev 3 points 10 months ago

I guess you mean std::expected, not std::exception?

this post was submitted on 11 Nov 2023
20 points (88.5% liked)

C++

1718 readers
17 users here now

The center for all discussion and news regarding C++.

Rules

founded 1 year ago
MODERATORS