| 29 | } |
| 30 | |
| 31 | Y_FORCE_INLINE static void BenchToString(auto&& toStringFn, benchmark::State& state) { |
| 32 | TTimestampGenerator gen; |
| 33 | TString s; |
| 34 | for (auto _ : state) { |
| 35 | s = toStringFn(gen()); |
| 36 | Y_DO_NOT_OPTIMIZE_AWAY(s); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | void BM_FormatIsoLocal(benchmark::State& state) { |
| 41 | BenchFormatStream(FormatIsoLocal, state); |
no test coverage detected