[#absl-AsciiStrToUpper-03] = xref:absl.adoc[absl]::AsciiStrToUpper :relfileprefix: ../ :mrdocs: Creates an uppercase string from a given std::string&&. == Synopsis Declared in `<absl/strings/ascii.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<int& DoNotSpecify...> [[nodiscard]] std::string AsciiStrToUpper(std::string&& s); ---- == Description (Template is used to lower priority of this overload.) == Return Value A new uppercase string. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== == Parameters [cols="1,4"] |=== | Name| Description | *s* | The source string to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#