toUpperCase overloads
<mrdocs/Support/String.hpp>Return an uppercase copy of the string without locale.
constexpr
std::string
toUpperCase(std::string_view const s) noexcept;
» more...
Convert a character to uppercase ASCII without locale.
constexpr
char
toUpperCase(char const c) noexcept;
» more...
s.c if it is lowercase; otherwise c.| Name | Description |
|---|---|
| s | Input string. |
| c | Character to convert. |