isUpper

Checks if a character is uppercase.

  1. bool isUpper(T c)
    static pure @nogc
    bool
    isUpper
    (
    T
    )
    (
    T c
    )
    if (
    isSomeChar!T
    )
  2. bool isUpper(string str)

Parameters

c T

The character to check.

Return Value

Type: bool

true if the character is uppercase.

Meta