| 366 | |
| 367 | template <typename Duration> |
| 368 | constexpr size_t BufferSizeHH_MM_SS() { |
| 369 | // "23:59:59" ("." "9"+)? |
| 370 | return detail::Digits10(23) + 1 + detail::Digits10(59) + 1 + detail::Digits10(59) + 1 + |
| 371 | detail::Digits10(Duration::period::den) - 1; |
| 372 | } |
| 373 | |
| 374 | template <typename Duration> |
| 375 | void FormatHH_MM_SS(arrow_vendored::date::hh_mm_ss<Duration> hms, char** cursor) { |
nothing calls this directly
no test coverage detected