std::nullopt_t
From cppreference.com
C++
Utilities library
|
|
std::optional
Member functions | ||||
Observers | ||||
Iterators | ||||
(C++26)
|
||||
(C++26)
|
||||
Monadic operations | ||||
(C++23)
|
||||
(C++23)
|
||||
(C++23)
|
||||
Modifiers | ||||
Non-member functions | ||||
Deduction guides | ||||
Helper classes | ||||
nullopt_t | ||||
Helper objects | ||||
Defined in header <optional>
|
||
struct nullopt_t; |
(since C++17) | |
std::nullopt_t
is an empty class type used to indicate that an std::optional does not contain a value.
std::nullopt_t
is a non-aggregate
LiteralType
that has no default constructor, no initializer-list constructor, but does have a constexpr
Notes
The constraints on nullopt_t
's constructors exist to support both op = {}; and op = nullopt;
A possible implementation of this class is
struct nullopt_t { constexpr explicit nullopt_t(int) {} };
See also
(C++17)
|
an object of type nullopt_t (constant) |