14 : m_has(false), m_value()
18 : m_has(true), m_value(t)
22 : m_has(true), m_value(std::move(t))
27 if (!m_has)
throw vega::Exception(
"Trying to access optional without a value");
32 operator bool()
const {
return m_has; }
35 void set_value(
const T& t) { m_has =
true; m_value = t; }
36 void set_value(T&& t) { m_has =
true; m_value = std::move(t); }
void set_empty()
Definition: optional.h:34
Optional(const T &t)
Definition: optional.h:17
void set_value(const T &t)
Definition: optional.h:35
void set_value(T &&t)
Definition: optional.h:36
The base class for exceptions that are raised by the vega library.
Definition: vega.h:11
bool has_value() const
Definition: optional.h:25
const T & value() const
Definition: optional.h:26
Optional()
Definition: optional.h:13
Optional(T &&t)
Definition: optional.h:21