mrdocs::toUpperCase

toUpperCase overloads

Synopses

Declared in <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...

Return Value

Parameters

Name Description
s Input string.
c Character to convert.