• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H08-Jul-2015-3,0012,178

meta/H08-Jul-2015-1716

test/H08-Jul-2015-4,8833,220

README.mdH A D08-Jul-2015393 1611

README.md

1optional
2========
3
4A library for representing optional (nullable) objects in C++.
5
6```cpp
7optional<int> readInt(); // this function may return either an int or a not-an-int
8
9if (optional<int> oi = readInt()) // did I get a real int
10  cout << "my int is: " << *oi;   // use my int
11else
12  cout << "I have no int";
13```
14
15For more information refer to the documentation provided with this library.
16