| 82 | |
| 83 | template <class... TArgs> |
| 84 | void TStringBuilderBase::AppendFormat(TStringBuf format, TArgs&& ... args) |
| 85 | { |
| 86 | Format(this, TRuntimeFormat{format}, std::forward<TArgs>(args)...); |
| 87 | } |
| 88 | |
| 89 | template <size_t Length, class... TArgs> |
| 90 | void TStringBuilderBase::AppendFormat(const char (&format)[Length], TArgs&& ... args) |
no test coverage detected