A value-semantic, type-safe wrapper for representing 'optional' (or 'nullable') objects of a given type. An optional object may or may not contain a value of the underlying type
A library for representing optional (nullable) objects in C++.
optional<int> readInt(); // this function may return either an int or a not-an-int
if (optional<int> oi = readInt()) // did I get a real int
cout << "my int is: " << *oi; // use my int
else
cout << "I have no int";
For more information refer to the documentation provided with this library.
license | BSL-1.0 |
---|---|
project | boost |
url | github.com/boostorg/optional |
doc-url | www.boost.org/doc/libs/1_85_0/libs/optional |
boost-users@lists.boost.orgMailing list | |
topics | C++Boost |
5 Versions
version | 1.85.0 |
---|---|
repository | https://pkg.cppget.org/1/stable |
depends | 10; libboost-assert, libboost-config, libboost-core, libboost-detail, libboost-move, libboost-predef, libboost-static-assert, libboost-throw-exception, libboost-type-traits, libboost-utility |
reviews | +1 |
version | 1.83.0 |
---|---|
repository | https://pkg.cppget.org/1/stable |
depends | 10; libboost-assert, libboost-config, libboost-core, libboost-detail, libboost-move, libboost-predef, libboost-static-assert, libboost-throw-exception, libboost-type-traits, libboost-utility |
reviews | +1 |
version | 1.81.0+1 |
---|---|
repository | https://pkg.cppget.org/1/stable |
depends | 10; libboost-assert, libboost-config, libboost-core, libboost-detail, libboost-move, libboost-predef, libboost-static-assert, libboost-throw-exception, libboost-type-traits, libboost-utility |
reviews | +1 |
version | 1.78.0 |
---|---|
repository | https://pkg.cppget.org/1/legacy |
depends | 10; libboost-assert, libboost-config, libboost-core, libboost-detail, libboost-move, libboost-predef, libboost-static-assert, libboost-throw-exception, libboost-type-traits, libboost-utility |
reviews | +1 |
version | 1.77.0+1 |
---|---|
repository | https://pkg.cppget.org/1/legacy |
depends | 10; libboost-assert, libboost-config, libboost-core, libboost-detail, libboost-move, libboost-predef, libboost-static-assert, libboost-throw-exception, libboost-type-traits, libboost-utility |
reviews | +1 |