| 51 | */ |
| 52 | template <class TStringType, class TPatternType> |
| 53 | Y_WARN_UNUSED_RESULT TStringType SubstGlobalCopy(TStringType result, TPatternType what, TPatternType with, size_t from = 0) { |
| 54 | SubstGlobal(result, what, with, from); |
| 55 | return result; |
| 56 | } |
nothing calls this directly
no test coverage detected