An open API service indexing awesome lists of open source software.

https://github.com/htrefil/result-option

Simple Result and Option types for C++11.
https://github.com/htrefil/result-option

Last synced: 6 days ago
JSON representation

Simple Result and Option types for C++11.

Awesome Lists containing this project

README

          

# result-option
A simple type-safe Result and Option types for C++11.

Result currently allows only for strings for errors.

## Configuration
By default, the types type will use assertions to check that values have been used (moved out) only once.
To disable this feature `#define RESULT_OPTION_MULTIPLE_MOVE`.

## Licence
Public domain.