| 511 | inline matcher_std_string_last_of_t(std::string_view needles) noexcept : needles_(needles) {} |
| 512 | inline size_type needle_length() const noexcept { return 1; } |
| 513 | inline size_type operator()(std::string_view haystack) const noexcept { return haystack.find_last_of(needles_); } |
| 514 | constexpr size_type skip_length() const noexcept { return 1; } |
| 515 | }; |
| 516 |
nothing calls this directly
no test coverage detected