| 252 | long long stoll(const string& str, size_t* idx, int base) { return as_integer<long long>("stoll", str, idx, base); } |
| 253 | |
| 254 | unsigned long long stoull(const string& str, size_t* idx, int base) { |
| 255 | return as_integer<unsigned long long>("stoull", str, idx, base); |
| 256 | } |
| 257 | |
| 258 | float stof(const string& str, size_t* idx) { return as_float<float>("stof", str, idx); } |
| 259 |