Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

boostorg/optional

Repository files navigation

optional

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.

About

Boost.org optional module

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 54

Languages

AltStyle によって変換されたページ (->オリジナル) /