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