std::optional
From cppreference.com
< cpp | experimental
| Defined in header <optional>
|
||
template< class T >
class optional;
|
(since C++14) | |
The class template std::optional manages an optional contained value. The value may be in either initialized or uninitialized state during the lifetime of the optional object.
A common use case for optional is the return value of a function that may fail. As opposed to other approaches, such as std::pair<T,bool>, optional handles expensive to construct objects well and is more readable, as the intent is expressed explicitly.
The value is guaranteed to be allocated within the optional object itself, i.e. no dynamic memory allocation ever takes place.
The optional object is in initialized state on the following conditions:
- The object is initialized with a value of type
T
- The object is assigned an
optionalin initialized state.
The object is in uninitialized state on the following conditions:
- The object is default-initialized.
- The object is initialized with a value of std::nullopt_t or a
optionalobject in uninitialized state.
- The object is assigned a value of std::nullopt_t or a
optionalobject in uninitialized state.
Template parameters
| T | - | the type of the value to manage initialization state for. The type must meet the requirements of Template:concept |
Member types
| Member type | Definition |
value_type
|
T
|
Member functions
constructs the optional object (public member function of std::optional<T>)
| |
| destroys the contained value, if there is one (public member function of std::optional<T>)
| |
| assigns contents (public member function of std::optional<T>)
| |
Observers | |
| accesses the contained value (public member function of std::optional<T>)
| |
| checks whether the object contains a value (public member function of std::optional<T>)
| |
| returns the contained value (public member function of std::optional<T>)
| |
| returns the contained value if available, another value otherwise (public member function of std::optional<T>)
| |
Modifiers | |
| exchanges the contents (public member function of std::optional<T>)
| |
| constructs the contained value in-place (public member function of std::optional<T>)
| |
Non-member functions
(C++17)(C++17)(C++17)(C++17)(C++17)(C++17)(C++20) |
compares optional objects (function template) |
(C++17) |
creates an optional object (function template) |
(C++17) |
specializes the std::swap algorithm (function template) |
Helper classes
(C++17) |
hash support for std::optional (class template specialization) |