mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
updated the stoul description
This commit is contained in:
parent
f7d7bba02a
commit
29e51c17fd
1 changed files with 2 additions and 3 deletions
|
@ -82,9 +82,8 @@ value = stoi(" 123"s, 0, 5); // assigns value 38)
|
||||||
value of type tt(long long).)
|
value of type tt(long long).)
|
||||||
ithtq(stoul)(unsigned long stoul(std::string const &str, size_t *pos = 0,
|
ithtq(stoul)(unsigned long stoul(std::string const &str, size_t *pos = 0,
|
||||||
int base = 10))
|
int base = 10))
|
||||||
(A conversion as described with tt(stoi) (not allowing an initial + or
|
(A conversion as described with tt(stoi) is performed, but now to a
|
||||||
- character) is performed, but now to a value of type tt(unsigned
|
value of type tt(unsigned long).)
|
||||||
long).)
|
|
||||||
ithtq(stoull)(unsigned long long stoull(std::string const &str,
|
ithtq(stoull)(unsigned long long stoull(std::string const &str,
|
||||||
size_t *pos = 0, int base = 10))
|
size_t *pos = 0, int base = 10))
|
||||||
(A conversion as described with tt(stoul) is performed, but now to a
|
(A conversion as described with tt(stoul) is performed, but now to a
|
||||||
|
|
Loading…
Reference in a new issue