|
rapidyaml 0.14.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. | |
| 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. | |
| 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. | |
|
inlinenoexcept |
convert an integral unsigned decimal to a string.
Definition at line 1316 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 1331 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 1386 of file charconv.hpp.