| 78 | |
| 79 | template<typename CharT, typename... Ts> |
| 80 | constexpr bool IsMatching(std::span<const CharT> str) |
| 81 | { |
| 82 | return [&]<size_t... I>(std::index_sequence<I...>) { |
| 83 | return ((match<Ts>(get<I>(str))) && ...); |
| 84 | }(std::make_index_sequence<sizeof...(Ts)>{}); |
| 85 | } |
| 86 | |
| 87 | template<typename... Args> |
| 88 | void print(auto fmt, const Args&... ts) |
nothing calls this directly
no outgoing calls
no test coverage detected