| 327 | |
| 328 | template <class T, class TStringType> |
| 329 | inline T FromStringWithDefault(const TStringType& s, const T& def) { |
| 330 | return FromString<T>(s.data(), s.size(), def); |
| 331 | } |
| 332 | |
| 333 | template <class T> |
| 334 | inline T FromStringWithDefault(const char* s, const T& def) { |
no test coverage detected