| 1251 | } |
| 1252 | |
| 1253 | String::StringBaseType String::lastChar() const { |
| 1254 | return mString.empty() ? std::numeric_limits<StringBaseType>::max() |
| 1255 | : mString[mString.size() - 1]; |
| 1256 | } |
| 1257 | |
| 1258 | // Lite (https://github.com/rxi/lite) fuzzy match implementation |
| 1259 | template <typename T> |
no test coverage detected