rapidyaml  0.10.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 1547 of file charconv.hpp.

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

References c4::read_bin(), c4::read_dec(), c4::read_hex(), and c4::read_oct().

Referenced by c4::atou_first(), c4::atox(), and c4::from_chars().

◆ 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 1589 of file charconv.hpp.

1590 {
1591  csubstr trimmed = str.first_uint_span();
1592  if(trimmed.len == 0)
1593  return csubstr::npos;
1594  if(atou(trimmed, v))
1595  return static_cast<size_t>(trimmed.end() - str.begin());
1596  return csubstr::npos;
1597 }
bool atou(csubstr str, T *v) noexcept
Convert a trimmed string to an unsigned integral value.
Definition: charconv.hpp:1547
@ npos
a null string position
Definition: common.hpp:267

References c4::atou(), and c4::yml::npos.

Referenced by c4::from_chars_first().