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