|
rapidyaml
0.13.0
parse and emit YAML, and do it fast
|
Functions | |
| template<class T > | |
| size_t | c4::utoa (substr buf, T v) noexcept |
| convert an integral unsigned decimal to a string. More... | |
| template<class T > | |
| size_t | c4::utoa (substr buf, T v, T radix) noexcept |
| convert an integral unsigned integer to a string, using a specific radix. More... | |
| template<class T > | |
| size_t | c4::utoa (substr buf, T v, T radix, size_t num_digits) noexcept |
same as c4::utoa(), but pad with zeroes on the left such that the resulting string is num_digits wide. More... | |
|
inlinenoexcept |
convert an integral unsigned decimal to a string.
Definition at line 1302 of file charconv.hpp.
|
inlinenoexcept |
convert an integral unsigned integer to a string, using a specific radix.
The radix must be 2, 8, 10 or 16.
Definition at line 1317 of file charconv.hpp.
|
inlinenoexcept |
same as c4::utoa(), but pad with zeroes on the left such that the resulting string is num_digits wide.
The radix must be 2, 8, 10 or 16.
Definition at line 1372 of file charconv.hpp.