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

https://github.com/amlel-el-mahrouss/stdx

Standard C++ extensions for utility purposes
https://github.com/amlel-el-mahrouss/stdx

cpp library utilities

Last synced: 3 months ago
JSON representation

Standard C++ extensions for utility purposes

Awesome Lists containing this project

README

        

# STDX (Standard eXtended)

Here is an example of how stdx::opt works.

```cpp
#include

int main(int argc, char** argv)
{
auto opt = stdx::opt(stdx::eval_eq(50, 50)).expect("stdex::eval_eq, does not match!");
opt = stdx::opt(stdx::eval_eq(50, 40));
opt.expect("this time it doesn't.");

return 0;
}
```

# Licensed under GPL-2