MCPcopy Create free account
hub / github.com/apache/arrow / BufferSizeHH_MM_SS

Function BufferSizeHH_MM_SS

cpp/src/arrow/util/formatting.h:368–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

366
367template <typename Duration>
368constexpr 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
374template <typename Duration>
375void FormatHH_MM_SS(arrow_vendored::date::hh_mm_ss<Duration> hms, char** cursor) {

Callers

nothing calls this directly

Calls 1

Digits10Function · 0.85

Tested by

no test coverage detected