| 20877 | |
| 20878 | template <typename Arg> |
| 20879 | inline std::string make_string(Arg&& arg) { |
| 20880 | string_view s = make_string_view(arg); |
| 20881 | return std::string(s.data(), s.size()); |
| 20882 | } |
| 20883 | |
| 20884 | inline int is_indexer(string_view s) { |
| 20885 | if (s == to_string(meta_function::index)) { |
no test coverage detected