| 220 | } |
| 221 | |
| 222 | TString TInstant::FormatGmTime(const char* format) const noexcept { |
| 223 | struct tm theTm; |
| 224 | GmTime(&theTm); |
| 225 | return Strftime(format, &theTm); |
| 226 | } |
| 227 | |
| 228 | ::NPrivate::TPrintableLocalTime<false, true> FormatIsoLocal(TInstant instant) { |
| 229 | return ::NPrivate::TPrintableLocalTime<false, true>(instant); |
nothing calls this directly
no test coverage detected