feat(reflect-cpp): Switched from glaze -> reflect cpp

A bug was discovered in glaze which prevented valid toml output. We have
switched to toml++ and reflect-cpp. The interface has remained the same
so this should not break any code
This commit is contained in:
2025-12-06 10:55:46 -05:00
parent 2b5abeae58
commit ec13264050
365 changed files with 63946 additions and 357 deletions

View File

@@ -0,0 +1,54 @@
#pragma once
#include "enchantum.hpp"
#include <array>
#include <stdexcept>
namespace enchantum {
template<Enum E, typename V>
class array : public std::array<V, count<E>> {
private:
using base = std::array<V, count<E>>;
public:
using index_type = E;
using typename base::const_iterator;
using typename base::const_pointer;
using typename base::const_reference;
using typename base::const_reverse_iterator;
using typename base::difference_type;
using typename base::iterator;
using typename base::pointer;
using typename base::reference;
using typename base::reverse_iterator;
using typename base::size_type;
using typename base::value_type;
using base::at;
using base::operator[];
[[nodiscard]] constexpr reference at(const E index)
{
if (const auto i = enchantum::enum_to_index(index))
return operator[](*i);
ENCHANTUM_THROW(std::out_of_range("enchantum::array::at index out of range"), index);
}
[[nodiscard]] constexpr const_reference at(const E index) const
{
if (const auto i = enchantum::enum_to_index(index))
return operator[](*i);
ENCHANTUM_THROW(std::out_of_range("enchantum::array::at: index out of range"), index);
}
[[nodiscard]] constexpr reference operator[](const E index) noexcept
{
return operator[](*enchantum::enum_to_index(index));
}
[[nodiscard]] constexpr const_reference operator[](const E index) const noexcept
{
return operator[](*enchantum::enum_to_index(index));
}
};
} // namespace enchantum