|
rapidyaml 0.14.0
parse and emit YAML, and do it fast
|
Functions | |
| template<class T> | |
| size_t | c4::itoa (substr buf, T v) noexcept |
| convert an integral signed decimal to a string. | |
| template<class T> | |
| size_t | c4::itoa (substr buf, T v, T radix) noexcept |
| convert an integral signed integer to a string, using a specific radix. | |
| template<class T> | |
| size_t | c4::itoa (substr buf, T v, T radix, size_t num_digits) noexcept |
same as c4::itoa(), but pad with zeroes on the left such that the resulting string is num_digits wide, not accounting for radix prefix (0x,0o,0b). | |
|
inlinenoexcept |
convert an integral signed decimal to a string.
Definition at line 1121 of file charconv.hpp.
|
inlinenoexcept |
convert an integral signed integer to a string, using a specific radix.
The radix must be 2, 8, 10 or 16.
Definition at line 1153 of file charconv.hpp.
|
inlinenoexcept |
same as c4::itoa(), but pad with zeroes on the left such that the resulting string is num_digits wide, not accounting for radix prefix (0x,0o,0b).
The radix must be 2, 8, 10 or 16.
Definition at line 1230 of file charconv.hpp.