| 1299 | } |
| 1300 | |
| 1301 | inline auto |
| 1302 | TextView::remove_prefix_at(std::string_view const &delimiters) -> self_type & { |
| 1303 | if (auto n = this->find_first_of(delimiters); n != npos) { |
| 1304 | this->super_type::remove_prefix(n + 1); |
| 1305 | } |
| 1306 | return *this; |
| 1307 | } |
| 1308 | |
| 1309 | template <typename F> |
| 1310 | auto |
no outgoing calls
no test coverage detected