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