#include <Optional.h>
Public Member Functions | |
Optional () | |
Optional (const T &val) | |
Optional (const Optional< T > &opt) | |
Optional & | operator= (const Optional< T > &opt) |
Optional & | operator= (const T &val) |
~Optional () | |
operator bool () const | |
T & | operator* () |
const T & | operator* () const |
T & | value () |
const T & | value () const |
void | reset () |
Protected Member Functions | |
void * | storage () |
const void * | storage () const |
T & | get () |
const T & | get () const |
void | destruct () |
void | construct (const T &data) |
Protected Attributes | |
char | data_ [sizeof(T)] |
bool | init_ |
Definition at line 30 of file Optional.h.
|
inline |
Uninitialized instance.
Definition at line 34 of file Optional.h.
|
inline |
Constructs the optional object.
Definition at line 37 of file Optional.h.
Initializes the contained value by copying the contained value of other, but only if other is engaged. other is still in engaged state if it was in engaged state before the call.
Definition at line 47 of file Optional.h.
|
inline |
If engaged, destroys the contained value.
Definition at line 78 of file Optional.h.
|
inlineprotected |
Definition at line 148 of file Optional.h.
|
inlineprotected |
Definition at line 142 of file Optional.h.
|
inlineprotected |
Definition at line 132 of file Optional.h.
|
inlineprotected |
Definition at line 137 of file Optional.h.
|
inline |
Checks whether the object is in engaged state.
Definition at line 84 of file Optional.h.
|
inline |
Returns a reference to the contained value.
Definition at line 90 of file Optional.h.
|
inline |
Returns a const reference to the contained value.
Definition at line 96 of file Optional.h.
Assigns contents.
Definition at line 55 of file Optional.h.
|
inline |
Assigns contents.
Definition at line 66 of file Optional.h.
|
inline |
Reset stored value and set state to Uninitialized.
Definition at line 114 of file Optional.h.
|
inlineprotected |
Definition at line 122 of file Optional.h.
|
inlineprotected |
Definition at line 127 of file Optional.h.
|
inline |
A reference to the contained value.
Definition at line 102 of file Optional.h.
|
inline |
A const reference to the contained value.
Definition at line 108 of file Optional.h.
|
protected |
Definition at line 153 of file Optional.h.
|
protected |
Definition at line 154 of file Optional.h.