vega
optional.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "vega/vega.h"
4 
5 namespace vega {
6  template <typename T>
7  class Optional {
8  private:
9  bool m_has;
10  T m_value;
11 
12  public:
14  : m_has(false), m_value()
15  {}
16 
17  explicit Optional(const T& t)
18  : m_has(true), m_value(t)
19  {}
20 
21  explicit Optional(T&& t)
22  : m_has(true), m_value(std::move(t))
23  {}
24 
25  bool has_value() const { return m_has; }
26  const T& value() const {
27  if (!m_has) throw vega::Exception("Trying to access optional without a value");
28  return m_value;
29  }
30 
31  // Conversion to boolean
32  operator bool() const { return m_has; }
33 
34  void set_empty() { m_has = false; }
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); }
37  };
38 }
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
Definition: age.h:6
const T & value() const
Definition: optional.h:26
Optional()
Definition: optional.h:13
Optional(T &&t)
Definition: optional.h:21
Definition: optional.h:7