mrdocs::isLowerCase

isLowerCase overloads

Synopses

Declared in <mrdocs/Support/String.hpp>

Determine if a character is a lowercase ASCII letter.

constexpr
bool
isLowerCase(char const c) noexcept;

Determine if every character in a string is lowercase ASCII.

constexpr
bool
isLowerCase(std::string_view const s) noexcept;

Return Value

  • true if c is in the range 'a' to 'z'.

  • true if all characters are lowercase ASCII letters.

Parameters

Name Description

c

Character to inspect.

s

String to inspect.

Created with MrDocs