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
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#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
|