isLowerCase overloads
Declared in <mrdocs/Support/String.hpp>
Determine if a character is a lowercase ASCII letter.
constexpr
bool
isLowerCase(char const c) noexcept;
» more...
Determine if every character in a string is lowercase ASCII.
constexpr
bool
isLowerCase(std::string_view const s) noexcept;
» more...
true if c is in the range 'a' to 'z'.true if all characters are lowercase ASCII letters.| Name | Description |
|---|---|
| c | Character to inspect. |
| s | String to inspect. |