isLower

Checks if a string contains only lowercase characters.

  1. bool isLower(T c)
  2. bool isLower(string str)
    static pure @nogc
    bool
    isLower
    (
    string str
    )

Parameters

str string

The string to check.

Return Value

Type: bool

true if the string contains only lowercase characters.

Meta