absl::ascii_islower

Determines whether the given character is lowercase.

Synopsis

Declared in <absl/strings/ascii.h>

constexpr
bool
ascii_islower(unsigned char c);

Return Value

true if c is lowercase, false otherwise.

Parameters

NameDescription
cThe character to test.