C++ Library provides generic way to handle null or error values
Go to file
2024-02-28 15:26:13 +01:00
src refactor: improve error handling 2024-02-28 15:22:14 +01:00
test feat: imrpovement and add more methods to Option and Result 2024-02-28 15:16:01 +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:26:13 +01:00

RO: Result and Option for C++

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