|
tetl 0.1.0
Embedded Template Library
|
Go to the source code of this file.
Namespaces | |
| namespace | etl |
Functions | |
| constexpr auto | stoi (etl::string_view str, etl::size_t *pos=nullptr, int base=10) -> int |
| Interprets a signed integer value in the string str. | |
| constexpr auto | stol (etl::string_view str, etl::size_t *pos=nullptr, int base=10) -> long |
| Interprets a signed integer value in the string str. | |
| constexpr auto | stoll (etl::string_view str, etl::size_t *pos=nullptr, int base=10) -> long long |
| Interprets a signed integer value in the string str. | |
| constexpr auto | stoul (etl::string_view str, etl::size_t *pos=nullptr, int base=10) -> unsigned long |
| Interprets a signed integer value in the string str. | |
| constexpr auto | stoull (etl::string_view str, etl::size_t *pos=nullptr, int base=10) -> unsigned long long |
| Interprets a signed integer value in the string str. | |