| 96 | |
| 97 | template <> |
| 98 | bool TBasicCowString<char, std::char_traits<char>>::to_title(size_t pos, size_t n) { |
| 99 | if (n == 0) { |
| 100 | return false; |
| 101 | } |
| 102 | bool changed = to_upper(pos, 1); |
| 103 | return to_lower(pos + 1, n - 1) || changed; |
| 104 | } |
| 105 | |
| 106 | template <> |
| 107 | TUtf16CowString& |
no test coverage detected