C++ Library provides generic way to handle null or error values
Go to file
DL e48a0430b6 feat: add more API methods to Result and Option 2024-02-29 18:03:55 +01:00
src feat: add more API methods to Result and Option 2024-02-29 18:03:55 +01:00
test feat: add more API methods to Result and Option 2024-02-29 18:03:55 +01:00
.gitignore fix: add base Option and Result implement, add unit tests 2024-02-27 17:57:44 +01:00
LICENSE Initial commit 2024-02-27 11:34:45 +01:00
README.md Update README.md 2024-02-28 15:27:17 +01:00

README.md

RO: Result and Option for C++

C++ class templates that implement Result<T,E> and Option<U> class families that facilitate Error and Null value handling. This implementation is inspired by the Rust language.