Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
199
template <typename Int>
200
constexpr 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_DD
Function · 0.85
BufferSizeHH_MM_SS
Function · 0.85
FormatHH_MM_SS
Function · 0.85
operator()
Method · 0.85
operator()
Method · 0.85
operator()
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected