27 #include "xlnt/utils/exceptions.hpp" 28 #include "xlnt/utils/numeric.hpp" 29 #include <type_traits> 41 #if ((defined(_MSC_VER) && _MSC_VER <= 1900) || (defined(__GNUC__) && __GNUC__ < 5)) 43 #define XLNT_NOEXCEPT_VALUE_COMPAT(...) (false) 45 #define XLNT_NOEXCEPT_VALUE_COMPAT(...) (__VA_ARGS__) 46 using ctor_copy_T_noexcept =
typename std::conditional<std::is_nothrow_copy_constructible<T>{}, std::true_type, std::false_type>::type;
47 using ctor_move_T_noexcept =
typename std::conditional<std::is_nothrow_move_constructible<T>{}, std::true_type, std::false_type>::type;
48 using copy_ctor_noexcept = ctor_copy_T_noexcept;
49 using move_ctor_noexcept = ctor_move_T_noexcept;
50 using set_copy_noexcept_t =
typename std::conditional<std::is_nothrow_copy_constructible<T>{} && std::is_nothrow_assignable<T, T>{}, std::true_type, std::false_type>::type;
51 using set_move_noexcept_t =
typename std::conditional<std::is_nothrow_move_constructible<T>{} && std::is_nothrow_move_assignable<T>{}, std::true_type, std::false_type>::type;
52 using clear_noexcept_t =
typename std::conditional<std::is_nothrow_destructible<T>{}, std::true_type, std::false_type>::type;
54 template <typename U = T, typename std::enable_if<!std::is_floating_point<U>::value>::type * =
nullptr>
58 constexpr
bool compare_equal(
const U &lhs,
const U &rhs)
const 66 template <typename U = T, typename std::enable_if<std::is_floating_point<U>::value>::type * =
nullptr>
67 constexpr
bool compare_equal(
const U &lhs,
const U &rhs)
const 69 return detail::float_equals(lhs, rhs);
85 optional(
const T &value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(ctor_copy_T_noexcept{}))
88 new (&storage_) T(value);
95 optional(T &&value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(ctor_move_T_noexcept{}))
98 new (&storage_) T(std::move(value));
106 : has_value_(other.has_value_)
110 new (&storage_) T(other.value_ref());
119 : has_value_(other.has_value_)
123 new (&storage_) T(std::move(other.value_ref()));
134 if (other.has_value_)
136 set(other.value_ref());
151 if (other.has_value_)
153 set(std::move(other.value_ref()));
183 void set(
const T &value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_copy_noexcept_t{}))
185 #if defined(__GNUC__) && !defined(__clang__) 186 #pragma GCC diagnostic push 187 #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" 195 new (&storage_) T(value);
198 #if defined(__GNUC__) && !defined(__clang__) 199 #pragma GCC diagnostic pop 206 void set(T &&value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_move_noexcept_t{}))
212 #if defined(__GNUC__) && !defined(__clang__) 213 #pragma GCC diagnostic push 214 #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" 218 value_ref() = std::move(value);
222 new (&storage_) T(std::move(value));
225 #if defined(__GNUC__) && !defined(__clang__) 226 #pragma GCC diagnostic pop 251 void clear() noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(clear_noexcept_t{}))
255 reinterpret_cast<T *
>(&storage_)->~T();
295 if (has_value_ != other.has_value_)
304 return compare_equal(value_ref(), other.value_ref());
319 T &value_ref() noexcept
321 return *
reinterpret_cast<T *
>(&storage_);
324 const T &value_ref()
const noexcept
326 return *
reinterpret_cast<const T *
>(&storage_);
330 alignas(T)
unsigned char storage_[
sizeof(T)];
333 #ifdef XLNT_NOEXCEPT_VALUE_COMPAT 334 #undef XLNT_NOEXCEPT_VALUE_COMPAT optional() noexcept
Default contructor. is_set() will be false initially.
Definition: optional.hpp:76
void clear() noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(clear_noexcept_t{}))
After this is called, is_set() will return false until a new value is provided.
Definition: optional.hpp:251
bool is_set() const noexcept
Returns true if this object currently has a value set. This should be called before accessing the val...
Definition: optional.hpp:175
optional & operator=(T &&rhs) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_move_noexcept_t{}))
Assignment operator overload. Equivalent to setting the value using optional::set.
Definition: optional.hpp:242
optional(optional &&other) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(move_ctor_noexcept{}))
Move constructs this optional from other. Clears the value from other if set noexcept if T move ctor ...
Definition: optional.hpp:118
bool operator==(const optional< T > &other) const noexcept
Returns true if neither this nor other have a value or both have a value and those values are equal a...
Definition: optional.hpp:293
optional(T &&value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(ctor_move_T_noexcept{}))
Constructs this optional with a value. noexcept if T move ctor is noexcept
Definition: optional.hpp:95
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
Exception when setting a class's attribute to an invalid value
Definition: exceptions.hpp:239
Many settings in xlnt are allowed to not have a value set. This class encapsulates a value which may ...
Definition: format.hpp:43
optional & operator=(const T &rhs) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_copy_noexcept_t{}))
Assignment operator overload. Equivalent to setting the value using optional::set.
Definition: optional.hpp:233
~optional() noexcept
Destructor cleans up the T instance if set
Definition: optional.hpp:166
optional & operator=(const optional &other) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_copy_noexcept_t{} &&clear_noexcept_t{}))
Copy assignment of this optional from other noexcept if set and clear are noexcept for T& ...
Definition: optional.hpp:132
optional(const T &value) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(ctor_copy_T_noexcept{}))
Constructs this optional with a value. noexcept if T copy ctor is noexcept
Definition: optional.hpp:85
optional(const optional &other) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(copy_ctor_noexcept{}))
Copy constructs this optional from other noexcept if T copy ctor is noexcept
Definition: optional.hpp:105
optional & operator=(optional &&other) noexcept(XLNT_NOEXCEPT_VALUE_COMPAT(set_move_noexcept_t{} &&clear_noexcept_t{}))
Move assignment of this optional from other noexcept if set and clear are noexcept for T&& ...
Definition: optional.hpp:149
bool operator!=(const optional< T > &other) const noexcept
Returns false if neither this nor other have a value or both have a value and those values are equal ...
Definition: optional.hpp:312