toUpper

Converts a character to uppercase.

  1. string toUpper(string str)
  2. T toUpper(T c)
    static pure
    T
    toUpper
    (
    T
    )
    (
    T c
    )
    if (
    isSomeChar!T
    )

Parameters

c T

The character to convert to uppercase.

Return Value

Type: T

c in uppercase.

Meta