| 411 | |
| 412 | template <class... TArgs> |
| 413 | auto MakeLazyMultiValueFormatter(TStringBuf format, TArgs&&... args) |
| 414 | { |
| 415 | return TLazyMultiValueFormatter<TArgs...>(format, std::forward<TArgs>(args)...); |
| 416 | } |
| 417 | |
| 418 | //////////////////////////////////////////////////////////////////////////////// |
| 419 |