|
rapidyaml 0.14.0
parse and emit YAML, and do it fast
|
Functions | |
| template<class I> | |
| bool | c4::read_dec (csubstr s, I *v) noexcept |
| read a decimal integer from a string. | |
| template<class I> | |
| bool | c4::read_hex (csubstr s, I *v) noexcept |
| read an hexadecimal integer from a string. | |
| template<class I> | |
| bool | c4::read_bin (csubstr s, I *v) noexcept |
| read a binary integer from a string. | |
| template<class I> | |
| bool | c4::read_oct (csubstr s, I *v) noexcept |
| read an octal integer from a string. | |
|
inlinenoexcept |
read a decimal integer from a string.
This is the lowest level (and the fastest) function to do this task.
Definition at line 875 of file charconv.hpp.
|
inlinenoexcept |
read an hexadecimal integer from a string.
This is the lowest level (and the fastest) function to do this task.
Definition at line 903 of file charconv.hpp.
|
inlinenoexcept |
read a binary integer from a string.
This is the lowest level (and the fastest) function to do this task.
Definition at line 938 of file charconv.hpp.
|
inlinenoexcept |
read an octal integer from a string.
This is the lowest level (and the fastest) function to do this task.
Definition at line 968 of file charconv.hpp.