folly::estimateSpaceNeeded

Estimate the space needed to append a 128-bit unsigned integer.

Synopsis

Declared in <folly/Conv.h>

template<class T>
constexpr
size_t
estimateSpaceNeeded(T value)
requires std::is_same<T, unsigned __int128>::value;

Return Value

The estimated number of characters.

Parameters

NameDescription
valueThe value whose string length is estimated.