[#absl-SimpleAtoi-0d] = xref:absl.adoc[absl]::SimpleAtoi :relfileprefix: ../ :mrdocs: Overload of `SimpleAtoi()` for unsigned 128‐bit integers. == Synopsis Declared in `<absl/strings/numbers.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] bool SimpleAtoi( std::string_view str, xref:absl/uint128.adoc[absl::uint128]* out); ---- == Return Value `true` on success; otherwise `false`. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *str* | The string to parse. | *out* | The location that receives the parsed value. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#