stoull overloads
Declared in <bslstl_string.h>
Parse a string as an unsigned long long value.
unsigned long long
stoull(
string const& str,
std::size_t* pos = 0,
int base = 10);
» more...
Same as stoull for wstring.
unsigned long long
stoull(
wstring const& str,
std::size_t* pos = 0,
int base = 10);
» more...
unsigned long long value parsed from str
| Name | Description |
|---|---|
| str | string to parse |
| pos | optional output for the index after the parsed value |
| base | numeric base for parsing (0 or 2..36) |