| 1514 | |
| 1515 | template <typename F> |
| 1516 | inline size_t |
| 1517 | TextView::rfind_if(F const &pred) const { |
| 1518 | for (const char *spot = this->data_end(), *limit = this->data(); spot > limit;) |
| 1519 | if (pred(*--spot)) |
| 1520 | return spot - this->data(); |
| 1521 | return npos; |
| 1522 | } |
| 1523 | |
| 1524 | inline TextView & |
| 1525 | TextView::ltrim(char c) { |
no test coverage detected