| 339 | namespace detail { |
| 340 | |
| 341 | constexpr size_t BufferSizeYYYY_MM_DD() { |
| 342 | // "-"? "99999-12-31" |
| 343 | return 1 + detail::Digits10(99999) + 1 + detail::Digits10(12) + 1 + |
| 344 | detail::Digits10(31); |
| 345 | } |
| 346 | |
| 347 | inline void FormatYYYY_MM_DD(arrow_vendored::date::year_month_day ymd, char** cursor) { |
| 348 | FormatTwoDigits(static_cast<unsigned>(ymd.day()), cursor); |
no test coverage detected