MCPcopy Create free account
hub / github.com/Neargye/magic_enum / customize_t

Method customize_t

include/magic_enum/magic_enum.hpp:234–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232class customize_t : public std::pair<detail::customize_tag, string_view> {
233 public:
234 constexpr customize_t(string_view srt) : std::pair<detail::customize_tag, string_view>{detail::customize_tag::custom_tag, srt} {}
235 constexpr customize_t(const char_type* srt) : customize_t{string_view{srt}} {}
236 constexpr customize_t(detail::customize_tag tag) : std::pair<detail::customize_tag, string_view>{tag, string_view{}} {
237 MAGIC_ENUM_ASSERT(tag != detail::customize_tag::custom_tag);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected