| 230 | **/ |
| 231 | template <typename T, typename TChar> |
| 232 | inline bool TryFromString(const TChar* data, size_t len, T& result) { |
| 233 | return TryFromStringImpl<T>(data, len, result); |
| 234 | } |
| 235 | |
| 236 | template <typename T, typename TChar> |
| 237 | inline bool TryFromString(const TChar* data, T& result) { |
no test coverage detected