| 465 | } |
| 466 | |
| 467 | inline unsigned long stoul (string_ref str, size_t* idx=0, int base=10) { |
| 468 | return std::stoul ( std::string(str), idx, base ); |
| 469 | } |
| 470 | |
| 471 | inline long long stoll (string_ref str, size_t* idx=0, int base=10) { |
| 472 | return std::stoll ( std::string(str), idx, base ); |
no test coverage detected