8#include "fixed_string.hpp"
13namespace hi::inline
v1 {
15template<
typename T, fixed_string... Tags>
23 return sizeof...(Tags);
33 return has_tag<Tags...>(tag);
36 constexpr auto begin()
noexcept
41 constexpr auto end()
noexcept
46 constexpr auto begin()
const noexcept
51 constexpr auto end()
const noexcept
61 constexpr T
const &operator[](
std::size_t i)
const noexcept
76 template<fixed_
string Tag>
77 constexpr T &get()
noexcept
82 template<fixed_
string Tag>
83 constexpr T
const &get()
const noexcept
DOXYGEN BUG.
Definition algorithm.hpp:15
std::size_t index_of_tag(std::string tag) noexcept
Definition tag.hpp:55
std::string tag_at_index(std::size_t index) noexcept
Definition tag.hpp:32
Definition tagged_map.hpp:16