AsciiStrToUpper overloads

Synopses

Declared in <absl/strings/ascii.h>

Creates an uppercase string from a given absl::string_view.

[[nodiscard]]
std::string
AsciiStrToUpper(std::string_view s);

Converts the characters in s to uppercase, changing the contents of s.

void
AsciiStrToUpper(std::string* s);

Creates an uppercase string from a given std::string&&.

template<int& DoNotSpecify...>
[[nodiscard]]
std::string
AsciiStrToUpper(std::string&& s);

Return Value

A new uppercase string.

Parameters

Name

Description

s

The source characters to convert.

Created with MrDocs