| 51 | |
| 52 | template <> |
| 53 | inline TUi32Region FromString(const TString& s) { |
| 54 | TUi32Region result; |
| 55 | sscanf(s.data(), "(%" PRIu32 ", %" PRIu32 ")", &result.Begin, &result.End); |
| 56 | return result; |
| 57 | } |
| 58 | |
| 59 | class TSplitDelimiters { |
| 60 | private: |
no test coverage detected