|
| Optional (const T &v) |
|
Optional & | operator= (const Optional &o) |
|
Optional & | operator= (const T &v) |
|
T * | operator-> () |
|
T & | operator* () |
|
const T * | operator-> () const |
|
const T & | operator* () const |
|
| operator bool () const |
|
bool | is_present () const |
|
bool | has_value () const noexcept |
|
T & | value () & |
|
const T & | value () const & |
|
T && | value () && |
|
const T && | value () const && |
|
T & | get () & |
|
T && | get () && |
|
const T & | get () const & |
|
const T && | get () const && |
|
template<class U > |
T | value_or (U &&default_value) const & |
|
template<class U > |
T | value_or (U &&default_value) && |
|
T & | operator() () |
|
void | set (const T &v) |
|
The documentation for this class was generated from the following file: