|
rapidyaml 0.15.2
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 1120 of file charconv.hpp.
Referenced by to_chars(), to_chars(), to_chars(), to_chars(), to_chars(), to_chars(), to_chars(), to_chars(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), xtoa(), and xtoa().
|
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 1152 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 1229 of file charconv.hpp.