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

Function Digits10

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

Source from the content-addressed store, hash-verified

198
199template <typename Int>
200constexpr size_t Digits10(Int value) {
201 return value <= 9 ? 1 : Digits10(value / 10) + 1;
202}
203
204} // namespace detail
205

Callers 7

operator()Method · 0.85
BufferSizeYYYY_MM_DDFunction · 0.85
BufferSizeHH_MM_SSFunction · 0.85
FormatHH_MM_SSFunction · 0.85
operator()Method · 0.85
operator()Method · 0.85
operator()Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected