| 304 | |
| 305 | template <class T, class TStringType> |
| 306 | inline bool TryFromStringWithDefault(const TStringType& s, T& result, const T& def) { |
| 307 | return TryFromString<T>(s.data(), s.size(), result, def); |
| 308 | } |
| 309 | |
| 310 | template <class T> |
| 311 | inline bool TryFromStringWithDefault(const char* s, T& result, const T& def) { |
no test coverage detected