AsciiStrToLower overloads
Declared in <absl/strings/ascii.h>
Creates a lowercase string from a given absl::string_view.
[[nodiscard]]
std::string
AsciiStrToLower(std::string_view s);
» more...
Converts the characters in s to lowercase, changing the contents of s.
void
AsciiStrToLower(std::string* s);
» more...
Creates a lowercase string from a given std::string&&.
template<int& DoNotSpecify...>
[[nodiscard]]
std::string
AsciiStrToLower(std::string&& s);
» more...
A new lowercase string.
| Name | Description |
|---|---|
| s | The source characters to convert. |