to_ascii_decimal overloads
Declared in <folly/lang/ToAscii.h>
Write the decimal digits of v into a fixed-size buffer.
template<size_t N>
size_t
to_ascii_decimal(
char(& out)[],
uint64_t v);
» more...
Write the decimal digits of v into [outb, oute).]
size_t
to_ascii_decimal(
char* outb,
char const* oute,
uint64_t v);
» more...
The number of bytes written
| Name | Description |
|---|---|
| out | Fixed-size output buffer to write into |
| v | Value to encode |
| outb | Start of the output buffer |
| oute | End of the output buffer |