rapidyaml  0.13.0
parse and emit YAML, and do it fast
atou: chars to unsigned

Functions

template<class T >
bool c4::atou (csubstr str, T *v) noexcept
 Convert a trimmed string to an unsigned integral value. More...
 
template<class T >
size_t c4::atou_first (csubstr str, T *v)
 Select the next range of characters in the string that can be parsed as an unsigned integral value, and convert it using atou(). More...
 

Detailed Description

Function Documentation

◆ atou()

template<class T >
bool c4::atou ( csubstr  str,
T *  v 
)
noexcept

Convert a trimmed string to an unsigned integral value.

The string can be formatted as decimal, binary (prefix 0b or 0B), octal (prefix 0o or 0O) or hexadecimal (prefix 0x or 0X). Every character in the input string is read for the conversion; it must not contain any leading or trailing whitespace.

Returns
true if the conversion was successful.
Note
overflow is not detected: the return status is true even if the conversion would return a value outside of the type's range, in which case the result will wrap around the type's range. See overflows: does a number string overflow a type and Check read for overflow for overflow checking utilities.
If the string has a minus character, the return status will be false.
See also
atou_first() if the string is not trimmed to the value to read.

Definition at line 1544 of file charconv.hpp.

1545 {
1546  C4_STATIC_ASSERT(std::is_integral<T>::value);
1547 
1548  if(C4_UNLIKELY(str.len == 0 || str.front() == '-'))
1549  return false;
1550 
1551  bool parsed_ok = true;
1552  if(str.str[0] != '0')
1553  {
1554  parsed_ok = read_dec(str, v);
1555  }
1556  else
1557  {
1558  if(str.len > 1)
1559  {
1560  const char pfx = str.str[1];
1561  if(pfx == 'x' || pfx == 'X')
1562  parsed_ok = str.len > 2 && read_hex(str.sub(2), v);
1563  else if(pfx == 'b' || pfx == 'B')
1564  parsed_ok = str.len > 2 && read_bin(str.sub(2), v);
1565  else if(pfx == 'o' || pfx == 'O')
1566  parsed_ok = str.len > 2 && read_oct(str.sub(2), v);
1567  else
1568  parsed_ok = read_dec(str, v);
1569  }
1570  else
1571  {
1572  *v = 0; // we know the first character is 0
1573  }
1574  }
1575  return parsed_ok;
1576 }
bool read_bin(csubstr s, I *v) noexcept
read a binary integer from a string.
Definition: charconv.hpp:924
bool read_oct(csubstr s, I *v) noexcept
read an octal integer from a string.
Definition: charconv.hpp:954
bool read_hex(csubstr s, I *v) noexcept
read an hexadecimal integer from a string.
Definition: charconv.hpp:889
bool read_dec(csubstr s, I *v) noexcept
read a decimal integer from a string.
Definition: charconv.hpp:861

◆ atou_first()

template<class T >
size_t c4::atou_first ( csubstr  str,
T *  v 
)
inline

Select the next range of characters in the string that can be parsed as an unsigned integral value, and convert it using atou().

Leading whitespace (space, newline, tabs) is skipped.

Returns
the number of characters read for conversion, or csubstr::npos if the conversion faileds
See also
atou() if the string is already trimmed to the value to read.
csubstr::first_uint_span()

Definition at line 1586 of file charconv.hpp.

1587 {
1588  csubstr trimmed = str.first_uint_span();
1589  if(trimmed.len && atou(trimmed, v))
1590  return static_cast<size_t>(trimmed.end() - str.begin());
1591  return csubstr::npos;
1592 }
bool atou(csubstr str, T *v) noexcept
Convert a trimmed string to an unsigned integral value.
Definition: charconv.hpp:1544
@ npos
a null string position
Definition: common.hpp:258